import { IconProp } from '@fortawesome/fontawesome-svg-core'; export type MenuPosition = 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right'; export interface MenuItem { label: string; progress?: number; colorScheme?: string; checked?: boolean; values?: Array; description?: string; icon?: IconProp; iconColor?: string; defaultIndex?: number; close?: boolean; } export interface MenuSettings { position?: MenuPosition; title: string; canClose?: boolean; items: Array; startItemIndex?: number; }