import React from 'react';
import Select, { Props as SelectProps, GroupBase } from 'react-select';
import Creatable from 'react-select/creatable';
import Async from 'react-select/async';
export type Option = { label: string; value: string };
export type SelectSingleProps = SelectProps