/** * Allows frequencies other than the [member cutoff_hz] to pass. * */ declare class AudioEffectFilter extends AudioEffect { /** * Allows frequencies other than the [member cutoff_hz] to pass. * */ new(): AudioEffectFilter; static "new"(): AudioEffectFilter /** Threshold frequency for the filter, in Hz. */ cutoff_hz: float; /** Gain amount of the frequencies after the filter. */ gain: float; /** Amount of boost in the frequency range near the cutoff frequency. */ resonance: float; connect>(signal: T, method: SignalFunction): number; /** No documentation provided. */ static FILTER_6DB: any; /** No documentation provided. */ static FILTER_12DB: any; /** No documentation provided. */ static FILTER_18DB: any; /** No documentation provided. */ static FILTER_24DB: any; }