import * as React from 'react'; import { BoxProps } from '../Box'; import { IconProps } from '../Icon'; export declare type LocalMenuItemProps = { /** Icon that appears on the right side of the menu item. */ iconAfter?: IconProps['icon']; iconAfterProps?: Omit; /** Icon that appears on the left side of the menu item. */ iconBefore?: IconProps['icon']; iconBeforeProps?: Omit; }; export declare type MenuItemProps = BoxProps & LocalMenuItemProps; export declare const MenuItem: React.ForwardRefExoticComponent & React.RefAttributes> & { displayName?: string; useProps: (props?: Partial, config?: { disableCSSProps?: string[]; themeKey?: string; }) => any; };