import { FC } from 'react'; import { Value, Option } from '~/components/Overlay'; import { Color, StitchedCSS } from '~/theme'; import { PositionProps } from '~/types'; export declare type MultiSelectProps = { values?: Value[]; options: (Option | Value)[]; onChange: (values: Value[]) => void; color?: Color; filterable?: boolean | 'create'; placeholder?: string; label?: string; overlay?: PositionProps; css?: StitchedCSS; }; export declare const MultiSelect: FC; //# sourceMappingURL=MultiSelect.d.ts.map