/// import './style.less'; type SwitchProps = { checked?: boolean; defaultChecked?: boolean; disabled?: boolean; size?: 'normal' | 'small'; onChange?: (checked: boolean) => void; }; declare function Switch(props: SwitchProps): JSX.Element; declare namespace Switch { var defaultProps: { disabled: boolean; size: string; defaultChecked: boolean; }; } export { SwitchProps }; export default Switch;