import { FunctionComponent } from 'react' import { ITouchEvent, ViewProps } from '@tarojs/components' export interface SwitchProps extends ViewProps { checked?: boolean loading?: boolean disabled?: boolean activeColor?: string inactiveColor?: string size?: string activeValue?: any inactiveValue?: any onChange?: (event: ITouchEvent) => any } declare const Switch: FunctionComponent export { Switch }