import React from 'react'; type Props = { options: { label: string; value: T; }[]; defaultValue: { label: string; value: T; }[]; onChange: (selectedValues: T[]) => void; }; export declare const MultiSelect: (props: Props) => React.JSX.Element; export {}; //# sourceMappingURL=MultiSelect.d.ts.map