import * as React from 'react'; import { Palette } from 'bumbag/types'; import { MenuOptionItemProps } from './MenuOptionItem'; import { ListFlatProps } from '../List'; export declare type LocalMenuOptionListProps = { alignCheck: 'left' | 'right'; defaultValue?: Array | string; disableLeftPadding?: boolean; disabled?: boolean; hasDividers?: boolean; options: Array>; onChange?: (values: Array | string, value: string) => void; optionComponent?: any; palette?: Palette; type: 'checkbox' | 'radio'; value?: Array | string; }; export declare type MenuOptionListProps = Omit & LocalMenuOptionListProps; export declare const MenuOptionList: React.ForwardRefExoticComponent & LocalMenuOptionListProps & React.RefAttributes> & { displayName?: string; useProps: (props?: Partial, config?: { disableCSSProps?: string[]; themeKey?: string; }) => any; };