import { TransformMap } from './maps.ts';
/**
 * Helper to create implicit counts of things.
 */
export declare class StatsCount<K = string> extends TransformMap<K, number> {
    constructor();
    inc(k: K, by: number): number;
}
