import React from 'react';
import type { RadioGroupProps } from './types';
export declare type FlexDirection = 'row' | 'column';
export declare type FlexWrap = 'nowrap' | 'wrap';
export declare function RadioGroup({ children, id, 'data-tag': dataTag, hideLabel, inline, label, name, onChange, spacing, currentValue, alignButton, }: RadioGroupProps): React.JSX.Element;
