import React from 'react'; import { FormikTouched, FormikErrors, FieldAttributes, FormikValues } from 'formik'; export interface FormikToggleProps { field: FieldAttributes; form: { touched: FormikTouched; errors: FormikErrors; }; id: string; label: string; } export declare const FormikToggle: React.FC;