export interface IControlSoundProps {
    controlType: 'resumeAll' | 'pauseAll';
    id: string;
}
/**
 *
 * @param props
 */
export declare function controlSound(props: IControlSoundProps): void;
export interface ISpatialAudioProps {
    audiosConfig: string;
}
