import type { InputProps as GcxInputProps } from "@vertigis/react-ui/Input"; import type { FC } from "react"; import type { TranslatableText } from "../../region"; /** * Properties for the `Input` component. */ export type InputProps = Omit & { title?: TranslatableText; "aria-label"?: TranslatableText; placeholder?: TranslatableText; inputProps?: Omit & { min?: number; max?: number; title?: TranslatableText; "aria-label"?: TranslatableText; placeholder?: TranslatableText; }; }; declare const Input: FC; export default Input;