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