import { AWMedia } from 'appworks-js'; import { Observable } from 'rxjs'; export declare class AWMediaService { AWMedia: AWMedia; constructor(); attach(filename: string): Observable<{}>; play(): void; pause(): void; release(): void; seekTo(value: number): any; setVolume(value: number): any; stop(): any; stopRecord(): any; startRecord(): any; getDuration(): void; getCurrentPosition(): Observable<{}>; }