import React from 'react'; interface SwitchProps { /** * 颜色,默认为主题色 */ color?: string; /** * 不可用状态 */ disabled?: boolean; /** * 选中状态 */ checked?: boolean; /** * 值 */ value?: string; /** * 值变更时的回调函数 */ onChange?: (event: React.ChangeEvent) => void; } /** * 开关控件 * * @export * @param {SwitchProps} props * @returns */ declare const _default: React.ForwardRefExoticComponent>; export default _default;