import * as React from 'react'; import { UnitPxType } from '../../system/ThemeProvider'; import { RadioLabelSideType } from '../RadioInput/radioInput'; type RadioDirectionType = 'row' | 'column'; export type RadioGroupProps = React.InputHTMLAttributes & { label?: string; direction?: RadioDirectionType; gap?: UnitPxType; labelSide?: RadioLabelSideType; message?: string; validationErrorMessage?: string; helperText?: string; }; export declare const RadioGroup: React.FC; export {};