import type { LIDMapping, SignalKeyStoreWithTransaction } from '../Types/index.js'; import type { ILogger } from '../Utils/logger.js'; export declare class LIDMappingStore { private readonly mappingCache; private readonly keys; private readonly logger; private pnToLIDFunc?; private readonly inflightLIDLookups; private readonly inflightPNLookups; constructor(keys: SignalKeyStoreWithTransaction, logger: ILogger, pnToLIDFunc?: (jids: string[]) => Promise); storeLIDPNMappings(pairs: LIDMapping[]): Promise; getLIDForPN(pn: string): Promise; getLIDsForPNs(pns: string[]): Promise; private _getLIDsForPNsImpl; getPNForLID(lid: string): Promise; getPNsForLIDs(lids: string[]): Promise; private _getPNsForLIDsImpl; /** * Close the cache and release resources */ close(): void; } //# sourceMappingURL=lid-mapping.d.ts.map