import { OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core'; import { CounterService } from './counter.service'; import { PlayableFactoryService } from '../../ui/video-panel/playable-factory.service'; export declare class CounterComponent implements OnInit, OnChanges, OnDestroy { private counter; private playableFactory; channel: string; private timer; private playable; private subscription; constructor(counter: CounterService, playableFactory: PlayableFactoryService); ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; ngOnDestroy(): void; private reportLags; private reportView; private reportStalled; }