/// export declare const Row: import("styled-components").StyledComponent<"div", any, { $align?: string | undefined; }, never>; declare type OptionValue = string; export declare type RadioGroupProps = { value?: string; name?: string; ariaLabel?: string; options?: Option[]; renderLabel?: (option: Option) => string; optionValue?: (option: Option) => OptionValue; onChange?: (event: { target: { value: OptionValue; }; type?: any; }) => void; }; export declare function RadioGroup({ options, ariaLabel, name, onChange, optionValue, renderLabel, }: RadioGroupProps): JSX.Element; export {};