import { ISwitchProps } from '../../Switch/props';
import { FormItemProps } from '../FormItem/props';
export interface FormSwitchProps extends Omit<ISwitchProps, 'checked' | 'defaultChecked'>, Omit<FormItemProps, 'readonly'> {
    switchClassName: string;
    switchStyle: string;
}
export declare const FormSwitchDefaultProps: Partial<FormSwitchProps>;
