import type { ComponentProps } from "react"; import type { DynamicStringEnumKeysOf, FlowbiteBoolean, FlowbiteColors, ThemingProps } from "../../types"; export interface TextareaTheme { base: string; colors: TextareaColors; withShadow: FlowbiteBoolean; } export interface TextareaColors extends Pick { [key: string]: string; } export interface TextareaProps extends Omit, "color" | "ref">, ThemingProps { color?: DynamicStringEnumKeysOf; shadow?: boolean; } export declare const Textarea: import("react").ForwardRefExoticComponent>;