import type { ComponentProps, ReactNode } from "react"; import type { KeepBoolean, KeepColors } from "../../Keep/KeepTheme"; export interface keepTextAreaTheme { base: string; colors: TextareaColors; disabled: string; withBg: { on: { colors: TextareaColors; }; off: string; }; withBorder: KeepBoolean; withShadow: KeepBoolean; } export interface TextareaColors extends Pick { [key: string]: string; } export interface TextareaProps extends Omit, "className" | "color" | "ref"> { shadow?: boolean; helperText?: ReactNode; withBg?: boolean; border?: boolean; disabled?: boolean; color?: keyof TextareaColors; } export declare const Textarea: import("react").ForwardRefExoticComponent>;