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?; constructor(keys: SignalKeyStoreWithTransaction, logger: ILogger, pnToLIDFunc?: (jids: string[]) => Promise); /** * Store LID-PN mapping - USER LEVEL */ storeLIDPNMappings(pairs: LIDMapping[]): Promise; /** * Get LID for PN - Returns device-specific LID based on user mapping */ getLIDForPN(pn: string): Promise; getLIDsForPNs(pns: string[]): Promise; /** * Get PN for LID - USER LEVEL with device construction */ getPNForLID(lid: string): Promise; } //# sourceMappingURL=lid-mapping.d.ts.map