import { HTMLAttributes, InputHTMLAttributes } from 'react';
import * as React from 'react';
import { BaseInputProps } from '../types';
export type RadioGroupProps = Omit, 'onChange'> & Pick, 'onChange' | 'disabled'> & Pick & {
/**
* @remarks This is meant to be `Radio`s.
*/
children: any[];
htmlForPrefix?: string;
selected?: string;
};
export declare const RadioGroup: React.FC;