export declare class AudioPlayer {
    private audio;
    constructor();
    play(src: string): void;
    stop(): void;
}
