import { FC, MouseEventHandler } from 'react'; import { IconName } from '../../../elements/icon/icon'; export interface ActionMenuItemProps { /** Label for the menu item. */ children: string; /** Controls if an icon is rendered on the left. */ iconName?: IconName; /** Called when the action menu item is clicked. */ onClick?: MouseEventHandler; } export declare const ActionMenuItem: FC;