/**
 * Sound mixer component.
 */
export class SoundMixer {
    static instance: any;
    /**
     * Returns the sound mixer instance, creates a new one if needed.
     * @returns { SoundMixer }
     */
    static getInstance(scene: any): SoundMixer;
    constructor(scene: any);
    scene: any;
    form: FormArea;
    init(): void;
    sounds: {
        avatar: any[];
        spatial: any[];
        other: any[];
    };
    show(): void;
    dispose(): void;
}
import { FormArea } from './form-area.js';
