import React from 'react'; import { StyledProps } from '../common'; import type { TdRadioGroupProps } from './type'; export interface RadioGroupProps extends TdRadioGroupProps, StyledProps { children?: React.ReactNode; } declare const RadioGroup: React.FC; export default RadioGroup;