/// import { IRadioEvent } from './AbstractRadio'; export interface IRadioGroupProps { value?: Value; disabled?: boolean; readOnly?: boolean; onChange?: (e: IRadioEvent) => void; isValueEqual?: (value1: Value, value2: Value) => boolean; className?: string; style?: React.CSSProperties; children?: React.ReactNode; } export declare function RadioGroup(props: IRadioGroupProps): JSX.Element; export default RadioGroup;