import * as React from 'react'; import { Palette } from 'bumbag/types'; import { BoxProps } from '../Box'; export declare type LocalMenuOptionGroupProps = { alignCheck: 'left' | 'right'; defaultValue?: Array | string; disableLeftPadding?: boolean; hasDividers?: boolean; onChange?: (values: Array | string, value: string) => void; palette?: Palette; type: 'checkbox' | 'radio'; value?: Array | string; }; export declare type MenuOptionGroupProps = BoxProps & LocalMenuOptionGroupProps; export declare const MenuOptionGroup: React.ForwardRefExoticComponent & import("react-native").ViewProps & import("../Box").LocalBoxProps & { active?: boolean; focus?: boolean; hover?: boolean; hoveractive?: boolean; } & LocalMenuOptionGroupProps & React.RefAttributes> & { displayName?: string; useProps: (props?: Partial, config?: { disableCSSProps?: string[]; themeKey?: string; }) => any; };