/** * Encode a mono float signal as a 16 bit PCM RIFF/WAVE file. * * The result can be handed straight to `new Blob([...], { type: "audio/wav" })` * or written to disk in Node. */ export declare function encodeWav(samples: Float32Array, sampleRate: number): ArrayBuffer; //# sourceMappingURL=wav.d.ts.map