import { default as React } from 'react'; import { VALID_ICON_NAMES } from '../icons/iconNames'; export interface ContextMenuItemProps { /** Display label for menu item */ label: string; /** ID for menu item */ id: string; /** Selection handler */ onSelect?: (label: string, id: string) => void; /** Optional start icon for menu item */ startIcon?: string; } export { VALID_ICON_NAMES }; declare const ContextMenuItem: { (props: ContextMenuItemProps): React.JSX.Element; displayName: string; }; export default ContextMenuItem; //# sourceMappingURL=ContextMenuItem.d.ts.map