import type { InlineHelpProps as GcxInlineHelpProps } from "@vertigis/react-ui/InlineHelp"; import type { FC } from "react"; import type { TranslatableText } from "../../region"; /** * Properties for the `InlineHelp` component. */ export type InputProps = Omit & { title?: TranslatableText; url?: { label: TranslatableText; href: string; }; }; declare const InlineHelp: FC; export default InlineHelp;