import type { RadioGroupProps as GcxRadioGroupProps } from "@vertigis/react-ui/RadioGroup"; import type { FC } from "react"; import type { TranslatableText } from "../../region"; /** * Properties for the `RadioGroup` component. */ export type RadioGroupProps = Omit & { title?: TranslatableText; "aria-label"?: TranslatableText; }; declare const RadioGroup: FC; export default RadioGroup;