import { RadioGroupProps as RadioGroupPropsAntd } from 'antd'; import { PropsTypes } from '@orca-fe/deye-typings'; import { TitleContentPropsOnly } from '../title-content'; export interface RadioGroupProps extends Omit, TitleContentPropsOnly { options?: { value: string | number; text?: 'text'; }[]; } declare const RadioGroup: { (props: RadioGroupProps): JSX.Element; title: string; propsDef: PropsTypes[]; }; export default RadioGroup;