import type { BindableProps } from "../types"; import { type PropsOf } from "@qwik.dev/core"; export type SelectFieldProps = Omit, "multiple"> & { name?: string; } & BindableProps<{ required: boolean; }>; export declare const SelectField: import("@qwik.dev/core").Component;