export declare function createAlphaSmoother(alpha: number): {
    next: (c: number) => number;
};
