import { AllStyleProps } from '../../../utils/styledSystem'; /** * Creates a new Radio component * @param props the Radio props */ export declare const RadioGroup: (props: RadioGroupProps) => JSX.Element; export interface RadioGroupProps extends AllStyleProps { id?: string; name: string; children?: JSX.Element[]; className?: string; disabled?: boolean; hasError?: boolean; onChange?: Function; onFocus?: Function; onBlur?: Function; }