/// import './index.less'; interface SwitchGroupConfig { options?: { title: string; value: string; }[]; value: any; onChange: any; keys: string; } declare const SwitchGroup: (props: SwitchGroupConfig) => JSX.Element; export default SwitchGroup;