export interface Option {
    value: string | number;
    label: string;
}
export interface MultiSelectProps {
    className?: string;
    label?: string;
    onChange: Function;
    placeholder?: string;
    disabled?: boolean;
    options: Option[];
    value: Option;
    isSearchable?: boolean;
    isClearable?: boolean;
}
