import React from 'react'; import { FormikTouched, FormikErrors, FieldAttributes, FormikValues } from 'formik'; import { SelectInputProps } from '../../SelectInput/SelectInput'; export interface FormikSelectInputProps extends Omit { field: FieldAttributes; form: { touched: FormikTouched; errors: FormikErrors; }; onChange?: SelectInputProps['onChange']; } export declare const FormikSelectInput: React.FC;