/** * This contains methods for setting up an AudioContext. * Used internally by the AudioListener and AudioLoader classes. * This uses the Web Audio API. */ export declare const AudioContext: { /** Return the value of the variable context in the outer scope, if defined, otherwise set it to a new AudioContext. */ getContext: () => AudioContext; /** Set the variable context in the outer scope to value. */ setContext: (value: AudioContext) => void; }; //# sourceMappingURL=audioContext.d.ts.map