import { Counter } from './Counter'; /** * Collection of counting objects */ export declare class Counters { counter: Counter[]; get(key: string): Counter; remove(key: string): Counter; asObject(): any; }