import { Option } from "../../../types/variables.mjs"; import { FC, SelectHTMLAttributes } from "react"; //#region src/components/form/select/select.d.ts type Props = { invalid?: boolean; options: readonly Option[]; } & Omit, 'className' | 'style'>; declare const Select: FC; //#endregion export { Select };