import { FC } from 'react'; interface ISwitchProps { /** * css class */ className?: string; /** * 激活时背景色,默认取 scss 变量 $ink-color-brand */ color?: string; /** * 初始选中状态 * @default false */ defaultChecked?: boolean; /** * 指定当前是否选中 */ checked?: boolean; /** * 是否禁止点击 * @default false */ disabled?: boolean; /** * 选中状态变化时回调函数 */ onChange?: (value: boolean) => void; } declare const Switch: FC; export default Switch;