import { type ReactNode } from 'react'; export type MenuItemProps = { id: string; destructive?: boolean; disabled?: boolean; onSelect: () => void; /** Children must include a `MenuItemIcon` and a `MenuItemText`. */ children: ReactNode; }; export declare const MenuItem: import("./registry").TaggedComponent; //# sourceMappingURL=MenuItem.d.ts.map