import { default as React } from 'react'; /** * A menu item with a radio control. * Must be used within a compound Menu or other `menu` or `menubar` aria role subtree. */ export declare const RadioMenuItem: React.ForwardRefExoticComponent> | React.ReactElement; label: string | null; labelProps?: React.ComponentPropsWithoutRef; onSelect: ((e: Event) => void) | null; onClick?: React.MouseEventHandler | undefined; kind?: "primary" | "critical"; disabled?: boolean; hideChevron?: boolean; } & Omit, HTMLButtonElement>, "ref"> | Omit, HTMLDivElement>, "ref"> | Omit, HTMLAnchorElement>, "ref">, "onClick" | "onSelect">, "label" | "className" | "disabled" | "onSelect"> & { /** * Whether the radio is checked. */ checked: boolean; } & React.RefAttributes>; //# sourceMappingURL=RadioMenuItem.d.ts.map