import RadioButtonGroup from "./RadioButtonGroup"; interface IProps extends React.InputHTMLAttributes { name: string; children: React.ReactNode; color?: string; } declare function RadioButton({ children, color, ...rest }: IProps): import("react/jsx-runtime").JSX.Element; declare namespace RadioButton { var Group: typeof RadioButtonGroup; } export default RadioButton;