import { ChangeDetectorRef, NgZone } from '@angular/core'; export declare class MediaPlayerComponent { private cdr; private zone; src: any; color: string; time: any; length: any; progress: number; current_time: string; duration: string; start: number; media_playing: boolean; controls_active: boolean; is_end: boolean; private hide_timer; private video; private player; constructor(cdr: ChangeDetectorRef, zone: NgZone); ngAfterViewInit(): void; change(): void; changeMediaState(): void; playMedia(): void; stopMedia(): void; restartMedia(): void; showTools(): void; updateTimer(): void; setDuration(): void; toggleFullScreen(): void; private init(); }