export declare const initSounds: () => void; export default class SoundControl { private static _instance; private constructor(); static getInstance(): SoundControl; playSound(soundName: string): void; stopSound(soundName: string): void; }