import type { Icon } from '@wisemen/vue-core-components'; import type { WithKeyboardShortcut } from '@/types/withKeyboardShortcut.type'; export interface DropdownMenuItem extends WithKeyboardShortcut { isDisabled?: boolean; icon: Icon; label: string; onSelect: () => void; }