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