import type { ReactNode, TextareaHTMLAttributes } from "react"; export interface TextareaProps extends TextareaHTMLAttributes { label: string; id: string; supportingText?: string; errorMessage?: ReactNode; }