export declare function InitializeRouter(router: any): void;
export declare class RouterService {
    private paths;
    private MobiusContainerMap;
    private history;
    constructor();
    registerRoutes(obj?: Object): void;
    getJsonOnTheBasisOfPath(path?: string, watchLevel?: number): {
        queryParams: Record<string, string>;
        componentMetadataUrl: any;
    };
    addHistory(path: string, watchLevel: number): void;
    loadOnTheBasisOfHistory(): void;
    getHistory(): Record<string, number>;
    connectMobiusContainer(watchLevel: number, MobiusContainer: any): void;
    triggerMobiusContainer(watchLevel: number): void;
}
