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