import { CSSProperties, HTMLAttributes, TextareaHTMLAttributes } from "react";
interface TextareaComponentProps extends TextareaHTMLAttributes {
id?: string;
rootProps?: HTMLAttributes;
error?: React.ReactNode;
mode?: "default" | "error" | "disabled";
overwriteTextareaStyle?: CSSProperties;
}
export declare const Textarea: ({ id, error, rootProps, mode, overwriteTextareaStyle, ...textareaProps }: TextareaComponentProps) => JSX.Element;
export {};