import { AudioContextManager, type AudioContextManagerOptions } from "./AudioContextManager"; import { AudioMixer } from "./AudioMixer"; export declare class AudioSystem { readonly contextManager: AudioContextManager; private mixerRef?; constructor(options?: AudioContextManagerOptions); get mixer(): AudioMixer; unlock(): Promise; suspend(): Promise; resume(): Promise; dispose(): Promise; } //# sourceMappingURL=AudioSystem.d.ts.map