import { FlowRemoteElement } from '../lib/FlowRemoteElement'; import { TextAreaProps as RemoteTextAreaElementProps } from '@mittwald/flow-react-components'; export type { TextAreaProps as RemoteTextAreaElementProps } from '@mittwald/flow-react-components'; export declare class RemoteTextAreaElement extends FlowRemoteElement { static get remoteAttributes(): string[]; static get remoteProperties(): { allowHorizontalResize: {}; allowResize: {}; allowVerticalResize: {}; "aria-activedescendant": {}; "aria-autocomplete": {}; "aria-controls": {}; "aria-describedby": {}; "aria-details": {}; "aria-errormessage": {}; "aria-haspopup": {}; "aria-hidden": {}; "aria-label": {}; "aria-labelledby": {}; autoComplete: {}; autoCorrect: {}; autoFocus: {}; autoResizeMaxRows: {}; className: {}; defaultValue: {}; dir: {}; enterKeyHint: {}; excludeFromTabOrder: {}; form: {}; hidden: {}; id: {}; inert: {}; inputMode: {}; isDisabled: {}; isInvalid: {}; isReadOnly: {}; isRequired: {}; lang: {}; maxLength: {}; minLength: {}; name: {}; pattern: {}; placeholder: {}; rows: {}; showCharacterCount: {}; slot: {}; spellCheck: {}; translate: {}; type: {}; validate: {}; validationBehavior: {}; value: {}; }; static get remoteEvents(): { animationEnd: {}; animationEndCapture: {}; animationIteration: {}; animationIterationCapture: {}; animationStart: {}; animationStartCapture: {}; auxClick: {}; auxClickCapture: {}; beforeInput: {}; blur: {}; change: {}; click: {}; clickCapture: {}; compositionEnd: {}; compositionStart: {}; compositionUpdate: {}; contextMenu: {}; contextMenuCapture: {}; copy: {}; cut: {}; doubleClick: {}; doubleClickCapture: {}; focus: {}; focusChange: {}; gotPointerCapture: {}; gotPointerCaptureCapture: {}; input: {}; keyDown: {}; keyUp: {}; lostPointerCapture: {}; lostPointerCaptureCapture: {}; mouseDown: {}; mouseDownCapture: {}; mouseEnter: {}; mouseLeave: {}; mouseMove: {}; mouseMoveCapture: {}; mouseOut: {}; mouseOutCapture: {}; mouseOver: {}; mouseOverCapture: {}; mouseUp: {}; mouseUpCapture: {}; paste: {}; pointerCancel: {}; pointerCancelCapture: {}; pointerDown: {}; pointerDownCapture: {}; pointerEnter: {}; pointerLeave: {}; pointerMove: {}; pointerMoveCapture: {}; pointerOut: {}; pointerOutCapture: {}; pointerOver: {}; pointerOverCapture: {}; pointerUp: {}; pointerUpCapture: {}; scroll: {}; scrollCapture: {}; select: {}; touchCancel: {}; touchCancelCapture: {}; touchEnd: {}; touchEndCapture: {}; touchMove: {}; touchMoveCapture: {}; touchStart: {}; touchStartCapture: {}; transitionCancel: {}; transitionCancelCapture: {}; transitionEnd: {}; transitionEndCapture: {}; transitionRun: {}; transitionRunCapture: {}; transitionStart: {}; transitionStartCapture: {}; wheel: {}; wheelCapture: {}; }; static get remoteSlots(): never[]; } declare global { interface HTMLElementTagNameMap { "flr-text-area": InstanceType; } }