import { StandardProps } from '@tarojs/components'; import React, { FC } from 'react'; import { CustomObj } from '../../common/type-utils'; declare type Direction = 'horizontal' | 'vertical'; interface RadioProps extends StandardProps { value?: string | number | boolean; labelKey?: keyof RadioProps['options'][number]; valKey?: keyof RadioProps['options'][number]; iconName?: string; iconActiveName?: string; iconSize?: string | number; reverse?: boolean; isBase?: boolean; disabled?: boolean; direction?: Direction; options: Array>; onChange?: (value: string | number | boolean) => void; childSlot?: (val: any) => React.ReactNode; } declare const ygRadioGroup: FC; export default ygRadioGroup;