import { type BindableProps } from "@qds.dev/base/state"; import { type PropsOf } from "@qwik.dev/core"; type TextboxInputBinds = { /** The current value of the input */ value: string; }; type PublicTextboxInputProps = PropsOf<"input"> & BindableProps; /** Native input element with textbox context integration */ export declare const TextboxInput: import("@qwik.dev/core").Component; export {};