import { FC } from 'react'; type MenuItemProps = { label: string; shortcuts?: string[]; disabled?: boolean; /** * undefined → no check column * true/false → displayed as a toggle row with a checkmark */ checked?: boolean; testId?: string; onClick?: () => void; className?: string; }; export declare const MenuItem: FC; export declare const MenuDivider: FC; export {}; //# sourceMappingURL=MenuItem.d.ts.map