import { ElementRef, OnInit } from '@angular/core';
export declare class AutosizeDirective implements OnInit {
    selector: any;
    emptyWidth: number;
    private actualText;
    private host;
    private element;
    constructor(element: ElementRef);
    ngOnInit(): void;
    autoWidth(text: any): void;
    value: string;
    private calculateWidth(element, text);
}
