declare const counter: { get(key: string): Promise; set(key: string, value: number): Promise; }; type CounterType = typeof counter; export { type CounterType, counter };