import React from 'react'; import { FieldProps } from 'formik'; import Option from './OptionType'; export interface SelectProps { autoFocus?: boolean; className?: string | null; id?: string | null; isDisabled?: boolean; isLoading?: boolean; isMulti?: boolean; isSearchable?: boolean; name: string; options: Option[]; placeholder?: string | null; style?: object; } export declare type RenderSelect = (props: FieldProps) => React.ReactNode; export declare type GetValue = () => any; export declare type HandleChange = (option: any) => void; declare const SelectField: React.FC; export default SelectField;