import type { SwitchProps } from 'antd/es/switch';
export interface IBaseSwitchProps {
    className?: SwitchProps['className'];
    style?: SwitchProps['style'];
    checked?: SwitchProps['checked'];
    disabled?: SwitchProps['disabled'];
    loading?: SwitchProps['loading'];
    autoFocus?: SwitchProps['autoFocus'];
    id?: SwitchProps['id'];
    onChange?: SwitchProps['onChange'];
    onClick?: SwitchProps['onClick'];
}
