///
import { GroupBase, OptionProps, MenuListProps as ReactSelectMenuListProps } from 'react-select';
import { CreatableProps } from 'react-select/creatable';
import { BoxProps } from '../Box/Box.types';
export type SelectType = 'regular' | 'checkbox';
export type SelectSize = 'small' | 'regular';
export interface Option {
label: string;
value: ValueType;
[key: string]: any;
}
export interface SelectInputProps extends CreatableProps