import { IContext, IExtension } from "@robotlegsjs/core";
/**
 * <p>This Extension waits for a ContextView 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 ContextViewExtension implements IExtension {
    private _injector;
    private _logger;
    /**
     * @inheritDoc
     */
    extend(context: IContext): void;
    private _handleContextView;
    private _beforeInitializing;
}
