import { type QRL } from '@builder.io/qwik'; import type { PropsOf } from '@builder.io/qwik'; export interface SelectFieldProps extends Omit, 'children'> { label?: string; error?: string; placeholder?: string; options?: Record | string[]; onChangeValue$?: QRL<(value: string, target: HTMLSelectElement, event: Event) => void>; } export declare const SelectField: import("@builder.io/qwik").Component;