import React from 'react'; import '../g.scss'; declare function LabelSwitch2(props: IRadioGroup): React.JSX.Element; export default LabelSwitch2; export interface IRadioGroup { title: string; selectList: ISelectList[]; wrapStyle?: React.CSSProperties; change?: Function; value?: string; paddingSize?: string; padding: number; } export interface ISelectList { key: number | string; name: string | number; type: string; names?: string; }