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