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