/** * @license * Copyright 2019 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import { TextAreaBase, TextAreaCharCounter, TextFieldInputMode, TextFieldType } from './mwc-textarea-base.js'; export { TextAreaCharCounter, TextFieldInputMode, TextFieldType }; declare global { interface HTMLElementTagNameMap { 'mwc-textarea': TextArea; } } /** @soyCompatible */ export declare class TextArea extends TextAreaBase { static styles: import("lit").CSSResult[]; }