import { default as React } from 'react';
import { RadioButtonProps } from '../../atoms/RadioButton';
export interface RadioGroupProps {
    options: RadioButtonProps[];
    selectedValue: string;
    onChange: (value: string) => void;
    direction?: 'vertical' | 'horizontal';
}
export declare const RadioGroup: React.FC<RadioGroupProps>;
