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