import React from 'react'; declare type SIZE = 'normal' | 'small'; export interface SwitchProps { className: string; style: React.CSSProperties; /** 主题色 */ color: string; /** 尺寸 */ size: SIZE; /** 指定当前选中状态 */ checked: boolean; /** 默认选中状态 */ defaultChecked: boolean; /** 禁用状态 */ disabled: boolean; /** 发生变化的回调 */ onChange: (checked: boolean) => void; formValue: boolean; setFormValue: (checked?: boolean, validate?: boolean) => void; } export declare const Switch: React.FC>; export {};