import { AfterViewInit, OnDestroy } from '@angular/core';
import { RootService } from '../../infrastructure/component/root.service';
export declare class AutoFocusDirective implements AfterViewInit, OnDestroy {
    private root;
    private view;
    enabled: boolean;
    constructor(root: RootService);
    ngAfterViewInit(): void;
    ngOnDestroy(): void;
}
