import { OnDestroy } from '@angular/core';
import { RootService } from '../../infrastructure/component/root.service';
import { PluginService } from '../../plugins/plugin.service';
export declare class FocusAfterRender implements OnDestroy {
    private focus;
    constructor(plugin: PluginService, root: RootService);
    ngOnDestroy(): void;
}
