import type { CreateComponentDoc } from "../../types/CreateComponentDoc"; export type Textarea = CreateComponentDoc<"textarea", { properties: { value?: string; maxlength?: number; placeholder?: string; }; customEvents: { linechange: { height: number; heightRpx: number; lineCount: number; }; input: { value: string; cursor: number; }; }; }>;