import { MouseEvent, ComponentClass } from 'react' import AtComponent from './base' export interface AtSwitchProps extends AtComponent { color?: string checked: boolean disabled?: boolean label?: string onChange?: (value: boolean) => void onClick?: (value: boolean) => void } declare const AtSwitch: ComponentClass export default AtSwitch