import { MouseEvent, ComponentClass } from 'react' import AtComponent from './base' export interface AtSwitchProps extends AtComponent { /** * 标签名 */ title/*;标题*/?: string /** * 背景颜色 * @default #6190e8 */ color/*;颜色*/?: string /** * 是否显示开启 * @default false */ checked/*;已选*/?: boolean /** * 是否禁止点击 * @default false */ disabled/*;禁用*/?: boolean /** * 是否显示下划线边框 * @default false */ border/*;边框*/?: boolean /** * 输入框值改变时触发的事件 */ onChange/*;当改变*/?: (value: boolean) => void } declare const AtSwitch: ComponentClass export default AtSwitch