import * as React from 'react'; import './index.scss'; export interface SwitchProps { /** * 是否禁用 */ disabled: boolean; /** * 尺寸 */ size: 'small' | 'medium'; } declare const Switch: React.FC; export default Switch;