import type { Reducer } from "./api.js"; /** * Reducer which ignores incoming values and instead only counts them, * optionally using given `start` and `step` counter values. * * @param offset - * @param step - */ export declare function count(offset?: number, step?: number): Reducer; export declare function count(src: Iterable): number; export declare function count(offset: number, src: Iterable): number; export declare function count(offset: number, step: number, src: Iterable): number; //# sourceMappingURL=count.d.ts.map