import React, { FC } from 'react'; import { ActionMeta } from 'react-select'; import { SelectVariant } from './types'; export declare type Props = { options: Record[]; placeholder: string; value: any; onChange: (value: any, meta: ActionMeta) => void; onBlur?: (e: React.FocusEvent) => void; hasError?: boolean; variant?: SelectVariant; name?: string; inputId?: string; }; export declare const Select: FC; export default Select;