import { IAudioNodeOptions } from './audio-node-options';
export interface IAnalyserOptions extends IAudioNodeOptions {
    fftSize: number;
    maxDecibels: number;
    minDecibels: number;
    smoothingTimeConstant: number;
}
//# sourceMappingURL=analyser-options.d.ts.map