import { FC } from 'react'; import { Props } from 'react-select'; import { BaseInputProps } from '../../../types'; export interface SelectProps extends Props, BaseInputProps { height?: string | number; options: any; onChange?: any; } declare const Select: FC; export default Select;