import { IContext, IExtension } from "@robotlegsjs/core";
/**
 * <p>This Extension waits for a ContextSceneManager to be added as a configuration
 * and maps it into the context's injector.</p>
 *
 * <p>It should be installed before context initialization.</p>
 */
export declare class ContextSceneManagerExtension implements IExtension {
    private _injector;
    private _logger;
    /**
     * @inheritDoc
     */
    extend(context: IContext): void;
    private _handleContextSceneManager;
    private _beforeInitializing;
}
