import React from 'react'; import { AutocompleteProps } from '../Autocomplete'; import { RemovableListProps } from '../RemovableList'; import { Styles } from './MultiSelectList.style'; export declare type MultiSelectListProps = Styles & Omit & { SelectComponent?: React.ComponentType>; SelectClasses?: Partial; ItemClasses?: RemovableListProps['ItemClasses']; RemovableListClasses?: RemovableListProps['classes']; values: RemovableListProps['items']; onChange?: RemovableListProps['onChange']; onClickItem?: RemovableListProps['onClickItem']; disabled?: RemovableListProps['disabled']; totalMessage?: RemovableListProps['totalMessage']; showTotalMessageFrom?: RemovableListProps['showTotalMessageFrom']; clearAllMessage?: RemovableListProps['clearAllMessage']; listLabel?: RemovableListProps['listLabel']; children?: RemovableListProps['children']; virtualized?: RemovableListProps['virtualized']; }; declare const _default: React.ComponentType, React.ReactText> & import("@material-ui/core/styles/withStyles").StyledComponentProps<"root" | "rootWithValues" | "selectRoot" | "selectWithValues" | "rootHasCounter">>; export default _default; //# sourceMappingURL=MultiSelectList.d.ts.map