import { ChangeDetectorRef, ElementRef } from '@angular/core'; import { ConnectedMediaRemoteService } from '../../services/connected-media-remote/connected-media-remote.service'; export declare class ConnectedAudioPlayerComponent { private _cdr; private _elementRef; private _remote; src: string; volume: number; readonly duration: number; readonly currentTime: number; private _audioElement; constructor(src: string, volume: number, _cdr: ChangeDetectorRef, _elementRef: ElementRef, _remote: ConnectedMediaRemoteService); onDocumentClick(e: MouseEvent): void; onDocumentKeydown(e: KeyboardEvent): void; onSliderSeek($event: number): void; onTimeupdate(): void; onMediaEnded(): void; close(e: Event): void; }