import * as React from 'react'; import { BoxProps, BoxTouchableProps } from '../Box'; import { IconProps } from '../Icon'; import { TextProps } from '../Text'; export declare type LocalMenuItemProps = { disabled?: boolean; hasDivider?: boolean; isStatic?: boolean; after?: React.ReactElement; before?: React.ReactElement; disableLeftPadding?: boolean; iconAfter?: IconProps['icon']; iconAfterProps?: Partial; iconBefore?: IconProps['icon']; iconBeforeProps?: Partial; afterWrapperProps?: Partial; beforeWrapperProps?: Partial; contentProps?: Partial; contentTextProps?: Partial; }; export declare type MenuItemProps = BoxTouchableProps & LocalMenuItemProps; export declare const MenuItem: React.ForwardRefExoticComponent & import("react-native").ViewProps & import("../Box").LocalBoxProps & { active?: boolean; focus?: boolean; hover?: boolean; hoveractive?: boolean; } & import("react-native").TouchableOpacityProps & import("../Box").LocalBoxTouchableProps & LocalMenuItemProps & React.RefAttributes> & { displayName?: string; useProps: (props?: Partial, config?: { disableCSSProps?: string[]; themeKey?: string; }) => any; };