import { ActivatedRoute, Router } from "@angular/router"; import { Observable } from "rxjs"; import { NamespaceScope } from "./namespace.scope"; /** * Defaults to using the Dev Space rather than the runtime environment * for things like BuildConfig or Builds */ export declare class DevNamespaceScope extends NamespaceScope { namespace: Observable; constructor(activatedRoute: ActivatedRoute, router: Router); protected getNamespace(params: any): any; currentNamespace(): any; }