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

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

export { SoundManagerStatic as default };
