import { SwitchProps } from 'antd';
import { FC } from 'react';
import { SWITCH } from '../../Types';
export interface ISwitch {
    ctype: typeof SWITCH;
    props: SwitchProps;
}
declare const Switch: FC<ISwitch>;
export default Switch;
