import React from 'react'; import { Option } from '../../models/Option'; import { VirtualizedListProps } from '../VirtualizedList'; import { RemovableListItemProps } from './Item'; import { Styles } from './RemovableList.style'; export declare type RemovableListProps = Styles & { 'data-testid'?: string; disabled?: boolean; virtualized?: Pick; ItemClasses?: Partial; selected?: Option; items: Option[]; totalMessage?: string; showTotalMessageFrom?: number; clearAllMessage?: string; listLabel?: string; onChange?: (value: Option[]) => void; onClickItem?: RemovableListItemProps['onClick']; children?: RemovableListItemProps['children']; }; declare const _default: React.ComponentType & Partial> & Partial>, "disabled" | "children" | "onChange" | "items" | "selected" | "data-testid" | "virtualized" | "onClickItem" | "totalMessage" | "clearAllMessage" | "listLabel" | "ItemClasses" | "showTotalMessageFrom"> & import("@material-ui/core/styles/withStyles").StyledComponentProps<"root" | "rootWithCounter" | "listItems" | "rootWithValues" | "listLabel" | "selectRoot" | "selectWithValues" | "counterRoot">>; export default _default; //# sourceMappingURL=RemovableList.d.ts.map