import type { PropsOf } from '@builder.io/qwik'; export interface TextareaFieldProps extends PropsOf<'textarea'> { label?: string; error?: string; } export declare const TextareaField: import("@builder.io/qwik").Component;