export interface TextAreaOptions { selector: string; placeholder?: string; value?: string; rows?: number; maxLength?: number; disabled?: boolean; resize?: "none" | "vertical" | "horizontal" | "both"; theme?: "light" | "dark"; showCounter?: boolean; onInput?: (value: string) => void; } //# sourceMappingURL=TextArea.types.d.ts.map