export declare class Counter { private counters; constructor(); incr(key: string): Promise; decr(key: string): Promise; getCount(key: string): number; }