import React from 'react'; import '../g.scss'; declare function LabelRadioGroup(props: ILabelRadioGroup): React.JSX.Element; export default LabelRadioGroup; export interface ILabelRadioGroup { title: string; selectList: ISelectList[]; wrapStyle?: React.CSSProperties; titleStyle?: React.CSSProperties; change?: Function; value?: string; isShowContent: boolean; defaultImgList?: IDefaultImgList[]; imgListActive?: string; precisionCustom?: IPrecisionCustom; nameType?: string; } export interface ISelectList { key: number | string; name: string | number; type: string; names?: string; } export interface IDefaultImgList { key: string; active?: boolean; url: string; } export interface IPrecisionCustom { key: string; url: string; }