import { EventEmitter, OnChanges, OnInit } from '@angular/core'; export declare class TimecodeComponent implements OnInit, OnChanges { current: number; total: number; isLive: boolean; seekToLive: EventEmitter<{}>; isOnTheEdge: boolean; currentTime: string; totalTime: string; constructor(); ngOnInit(): void; ngOnChanges(): void; clicked(): void; }