import * as React from 'react'; import { MenuGroupProps } from './MenuGroup'; export declare type LocalMenuOptionGroupProps = { defaultValue?: Array | string; onBlur?: (values: Array | string) => void; onChange?: (values: Array | string, value: string) => void; type: 'checkbox' | 'radio'; value?: Array | string; }; export declare type MenuOptionGroupProps = Omit & LocalMenuOptionGroupProps; export declare const MenuOptionGroup: React.ForwardRefExoticComponent & React.RefAttributes> & { displayName?: string; useProps: (props?: Partial, config?: { disableCSSProps?: string[]; themeKey?: string; }) => any; };