import { SoundPlay } from '../interface/export/ExportedSounds.cjs';
import Sound from '../classes/Sound.cjs';
import '../interface/SoundOptions.cjs';
import '@pixi/sound';
import '../types/SoundFilterMemory.cjs';

declare class SoundManagerStatic {
    private constructor();
    static soundAliasesOrder: string[];
    static soundsPlaying: {
        [key: string]: SoundPlay;
    };
    static sounds: {
        [key: string]: Sound;
    };
}

export { SoundManagerStatic as default };
