/// <reference types="react" />
import { ISwitchProps } from '../../switch';
import { IFormComponentProps } from '../shared';
export declare type IFormSwitchFieldProps = IFormComponentProps<boolean, Omit<ISwitchProps, 'checked'>>;
export declare const FormSwitchField: React.FunctionComponent<IFormSwitchFieldProps>;
