import { FASTElement } from "@microsoft/fast-element"; export type AutocorrectNames = { on: string; off: string; }; export declare class enmeddTextarea extends FASTElement { textarea: HTMLTextAreaElement | null; hovered?: boolean; active?: boolean; label?: string; value?: string; placeholder?: string; minlength?: number; maxlength?: number; disabled?: boolean; error?: boolean; errorMessage?: string; instruction?: string; required?: boolean; resize?: boolean; sideAlign?: boolean; autocomplete?: string; autocorrect?: keyof AutocorrectNames; readonly?: boolean; rows?: number; connectedCallback(): void; handleInput(): void; } export declare const EnmeddTextarea: import("@microsoft/fast-react-wrapper").ReactWrapper; //# sourceMappingURL=textarea.d.ts.map