import { SwitchProps } from "src/components/Switch"; export interface FormikSwitchProps extends Omit { /** Formik field name. */ name: string; /** Callback fired when the checked state changes. Also supports onChange for compatibility. */ onChange?: () => void; } declare const FormikSwitch: { ({ name, onCheckedChange: onCheckedChangeProp, onChange: onChangeProp, ...rest }: FormikSwitchProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; export { FormikSwitch };