import { Router } from '@angular/router'; import { RouterService as RouterServiceContract } from '../interfaces/router-service'; import { Observable } from 'rxjs'; import { QueryParams } from './observe-route.service'; export declare class RouterService implements RouterServiceContract { private router; private baseFilter$; readonly onNavigationEnd$: Observable; queryParams(): QueryParams; constructor(router: Router); }