import { Resolve, ActivatedRouteSnapshot, RouterStateSnapshot } from '@angular/router'; import { Observable } from 'rxjs'; import { LoadingService } from '@schoolbelle/common/loading'; import { TimerService } from '../../../services'; export declare class TimeDataResolve implements Resolve { protected time: TimerService; protected loading: LoadingService; constructor(time: TimerService, loading: LoadingService); resolve(route: ActivatedRouteSnapshot, state: RouterStateSnapshot): Observable; }