import type { ComponentProps, ReactNode } from 'react'; import type { FlowbiteBoolean, FlowbiteColors } from '../Flowbite/FlowbiteTheme'; export interface FlowbiteTextareaTheme { base: string; colors: TextareaColors; withShadow: FlowbiteBoolean; } export interface TextareaColors extends Pick { [key: string]: string; } export interface TextareaProps extends Omit, 'color' | 'ref'> { shadow?: boolean; helperText?: ReactNode; color?: keyof TextareaColors; } export declare const Textarea: import("react").ForwardRefExoticComponent>;