import React from 'react'; import { RadioProps } from './index'; import { BaseProps } from '../_utils/props'; export interface RadioGroupProps extends BaseProps { name?: string; defaultValue?: string; value?: string; onChange?: (value: string, event: React.FormEvent) => void; disabled?: boolean; children: React.ReactElement; } declare const RadioGroup: (props: RadioGroupProps) => React.ReactElement React.ReactElement React.Component)> | null) | (new (props: any) => React.Component)>; export default RadioGroup;