import React from 'react'; import { ControlGroupOption, ControlGroupProps, DOMProps, QAProps } from '../types'; import { Radio, RadioProps, RadioSize } from '../Radio'; export declare type RadioGroupOption = ControlGroupOption; export declare type RadioGroupSize = RadioSize; export declare type RadioGroupDirection = 'vertical' | 'horizontal'; export interface RadioGroupProps extends ControlGroupProps, DOMProps, QAProps { size?: RadioGroupSize; direction?: RadioGroupDirection; children?: React.ReactElement | React.ReactElement[]; } interface RadioGroupComponent extends React.ForwardRefExoticComponent> { Option: typeof Radio; } export declare const RadioGroup: RadioGroupComponent; export {};