export type AudioWaveform = { /** * Mono PCM samples from the ring buffer (2048 values), each in [-1.0, 1.0]. */ samples: Array; /** * FFT magnitude bins (128 values) in dBFS. Typical range: [-120.0, 0.0]. */ frequencies: Array; }; //# sourceMappingURL=AudioWaveform.d.ts.map