///
import { SwitchProps as MuiSwitchProps } from '@material-ui/core/Switch';
import { FieldProps } from 'formik';
export interface SwitchProps extends FieldProps, Omit {
type?: string;
}
export declare function fieldToSwitch({ disabled, field: { onBlur: fieldOnBlur, ...field }, form: { isSubmitting }, type, onBlur, ...props }: SwitchProps): MuiSwitchProps;
export declare function Switch(props: SwitchProps): JSX.Element;
export declare namespace Switch {
var displayName: string;
}