export interface DropdownItem { label: string; icon?: string; onClick?: () => void; value?: string | number; disabled?: boolean; divider?: boolean; }