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