/** * Inspired from: https://stevepapa.com/ng-autosize/ */ import { AfterViewInit, ElementRef } from '@angular/core'; export declare class AutoSizeDirective implements AfterViewInit { element: ElementRef; private el; private _minHeight; private _maxHeight; private _lastHeight; private _clientWidth; get minHeight(): string; set minHeight(val: string); get maxHeight(): string; set maxHeight(val: string); onResize(): void; onInput(): void; constructor(element: ElementRef); ngAfterViewInit(): void; adjust(): void; updateMinHeight(): void; updateMaxHeight(): void; }