export declare const TEXTAREA_SIZES: readonly ["md", "lg"]; export declare const TEXTAREA_VARIANTS: readonly ["default", "warning", "destructive", "success"]; export declare const TEXTAREA_RESIZE: readonly ["vertical", "none"]; export type TextareaSize = (typeof TEXTAREA_SIZES)[number]; export type TextareaVariant = (typeof TEXTAREA_VARIANTS)[number]; export type TextareaResize = (typeof TEXTAREA_RESIZE)[number]; export interface TextareaChangeDetail { value: string; }