import type { BindableProps } from "../types"; type TextboxFieldBinds = { /** Whether the textbox field is required */ required: boolean; }; export type PublicTextboxFieldProps = { /** Name attribute for form submission */ name?: string; } & BindableProps; /** Field configuration component for name and required state */ export declare const TextboxField: import("@qwik.dev/core").Component; export {};