import { OnInit, OnDestroy } from "@angular/core"; import { Router } from "@angular/router"; import { LoadingBarService } from "./LoadingBarService"; export declare class LoadingBar implements OnInit, OnDestroy { private loadingBarService; private router; color: string; height: number; animationTime: number; runInterval: number; progress: number; listenRouterEvents: boolean; routerEventsFilter: (event: any) => boolean; visible: boolean; private runningInterval; private routerEventSubscriber; constructor(loadingBarService: LoadingBarService, router: Router); ngOnInit(): void; ngOnDestroy(): void; start(): void; stop(): void; reset(): void; complete(): void; }