export declare class IdManager<KeyType extends string> {
    idMap: Map<KeyType, {
        id: string;
        setCount: number;
        getCount: number;
    }>;
    constructor();
    set(key: KeyType): string;
    get(key: KeyType): string;
}
//# sourceMappingURL=IdManager.d.ts.map