import type { FormControlProps as GcxFormControlProps } from "@vertigis/react-ui/FormControl"; import type { FC, ReactNode } from "react"; import type { TranslatableText } from "../../region"; /** * Properties for the `FormControl` component. */ export type FormControlProps = Omit & { title?: TranslatableText; "aria-label"?: TranslatableText; inlineHelpContent?: ReactNode; inlineHelpTitle?: TranslatableText; inlineHelpUrl?: { label: TranslatableText; href: TranslatableText; }; }; declare const FormControl: FC; /** * A simple extension for a Form Control that includes inline help. */ export default FormControl;