/** * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE */ import { Platform } from '@angular/cdk/platform'; import { AfterViewInit, DoCheck, ElementRef, NgZone, OnDestroy } from '@angular/core'; import { VtsResizeService } from '@ui-vts-kit/ng-vts/core/services'; import * as i0 from "@angular/core"; export interface AutoSizeType { minRows?: number; maxRows?: number; } export declare class VtsAutosizeDirective implements AfterViewInit, OnDestroy, DoCheck { private elementRef; private ngZone; private platform; private resizeService; private autosize; private el; private previousValue; private previousMinRows; private minRows; private maxRows; private destroy$; set vtsAutosize(value: AutoSizeType | string | boolean); resizeToFitContent(force?: boolean): void; noopInputHandler(): void; constructor(elementRef: ElementRef, ngZone: NgZone, platform: Platform, resizeService: VtsResizeService); ngAfterViewInit(): void; ngOnDestroy(): void; ngDoCheck(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; }