import React from 'react'; import './index.less'; declare type Props = { checked: boolean; disable?: boolean; className?: string; item?: any; type?: 'free' | 'join'; onClick?(isCheck: boolean, item?: any, type?: string): void; }; declare const Switch: React.FC; export default Switch;