import { CommonSelectProps } from '../SelectBase'; import { MultipleValue } from '../types'; export interface SelectMultipleProps extends CommonSelectProps { defaultValue?: MultipleValue; value?: MultipleValue; onChange?: (value: MultipleValue) => void; /** * If provided amount of chips will be limited to this number. If more chips are selected, a `+n` chip will be shown. Automatically changes amount on resize. * @important Use this prop carefully. It can introduce performance issues if there are a lot of chips. */ maxItemsDisplayed?: number; } export declare const SelectMultiple: import('react').ForwardRefExoticComponent>; //# sourceMappingURL=SelectMultiple.d.ts.map