/** * Воспроизводит звук из файла */ declare const playSound: (file: string, { volume }?: { volume?: number; }) => Promise; export { playSound };