import type { HTMLTextareaAttributes } from "svelte/elements";
type TextareaProps = Omit & {
label?: string;
helperText?: string;
errorText?: string;
invalid?: boolean;
value?: string | null;
class?: string;
};
declare const Textarea: import("svelte").Component;
type Textarea = ReturnType;
export default Textarea;
//# sourceMappingURL=Textarea.svelte.d.ts.map