import React from 'react'; import type { RadioGroupProps as AntdRadioGroupProps } from 'tntd/lib/radio'; export interface RadioGroupProps extends AntdRadioGroupProps { options: { label: string; value: string | number; disabled: boolean; }[]; type: 'radio' | 'button'; } export declare const RadioGroup: React.FC; export default RadioGroup;