///
import { Palette } from 'bumbag/types';
import { MenuItemProps } from './MenuItem';
export declare type LocalMenuOptionItemProps = {
alignCheck?: 'left' | 'right';
checked?: boolean;
checkIcon?: MenuItemProps['iconBeforeProps'];
defaultChecked?: boolean;
onChange?: ({ checked: boolean, value: string }: {
checked: any;
value: any;
}) => void;
palette?: Palette;
value?: string;
};
export declare type MenuOptionItemProps = MenuItemProps & LocalMenuOptionItemProps;
export declare const MenuOptionItem: import("react").ForwardRefExoticComponent & import("react-native").ViewProps & import("..").LocalBoxProps & {
active?: boolean;
focus?: boolean;
hover?: boolean;
hoveractive?: boolean;
} & import("react-native").TouchableOpacityProps & import("..").LocalBoxTouchableProps & import("./MenuItem").LocalMenuItemProps & LocalMenuOptionItemProps & import("react").RefAttributes> & {
displayName?: string;
useProps: (props?: Partial, config?: {
disableCSSProps?: string[];
themeKey?: string;
}) => any;
};