import { FC } from 'react'; import { Props } from 'react-select'; import { InputWrapperProps } from "../InputWrapper"; declare type SelectProps = { id?: string; } & InputWrapperProps & Props; export declare const Select: FC; export {};