interface IOptions {
    bitDepth: 8 | 16 | 32;
}
export declare function audioBufferToWav(buffer: AudioBuffer, options?: IOptions): ArrayBuffer;
export {};
