import { Router } from '@angular/router'; import { Observable } from 'rxjs/Rx'; import { FramingContainerOutletContent } from './container-outlet-content'; export declare class FramingContainerOutletService { private router; readonly contents$: Observable; private contentsSubject; private contents; private routeContents; private subscriptions; constructor(router: Router); hasContent(container: string): boolean; activate(content: FramingContainerOutletContent): () => void; private deactivate(content); private onNavigationEnd(); private resolveRouteContents(snapshot, routeContents); }