import type { ReactPropsBase } from 'jamis-core'; export interface MenuItem extends ReactPropsBase { id?: string; label: string; icon?: string; disabled?: boolean; children?: Array; data?: any; onSelect?: (data: any) => void; onHighlight?: (isHiglight: boolean, data: any) => void; } export type MenuDivider = '|';