export declare const isAudioSupported: false | {
    new (contextOptions?: AudioContextOptions | undefined): AudioContext;
    prototype: AudioContext;
};
/**
 * Возвращает новый инстанс AudioContext или ошибку
 * @param options AudioContextOptions
 * @returns AudioContext
 */
export declare function createAudioContext(options?: AudioContextOptions): AudioContext;
/**
 * При помощи вызова функции из аргумента, возвращает, готовый к воспроизведению звука, AudioContext.
 * Всегда возвращает один и тот же AudioContext
 * @param onReady Функция, в аргумент которой будет возвращен AudioContext
 */
export declare const resolveAudioContext: (onReady: (context: AudioContext, destroy: () => void) => void) => void;
//# sourceMappingURL=audioContext.d.ts.map