import React from 'react'; import { SelectableOption } from '.'; import './MultiSelect.scss'; type Props = Omit, 'defaultValue' | 'value' | 'onChange'> & { defaultValue?: string[] | undefined; disabled?: boolean; dropDirection?: 'down' | 'up'; error?: boolean | string; idRef?: string; name?: string; onChange?: (value: string[]) => void; options: SelectableOption[]; placeholder?: string; searchable?: boolean; shiftIconLeftwards?: boolean; value?: string[] | undefined; }; export declare const MultiSelect: React.FC; export {};