import { ElementRef } from '@angular/core';
export declare class Autosize {
    element: ElementRef;
    init_height: number;
    onInput(textArea: HTMLTextAreaElement): void;
    constructor(element: ElementRef);
    ngAfterContentChecked(): void;
    adjust(): void;
}
