/** Get the PCM data associated with the AudioBuffer. */ export declare const getPCM: (buf: AudioBuffer) => Float32Array[]; /** Convert MIDI note to frequency. */ export declare const convertMidiToFrequency: (n: number) => number; /** Convert frequency to MIDI note. */ export declare const convertFrequencyToMidi: (n: number) => number;