export interface PeerInfo { nodeId?: string; hostname: string; address: string; port: number; platform?: string; version?: string; capabilities?: string[]; status: string; lastSeen?: number; failureCount?: number; trusted?: boolean; manuallyAdded?: boolean; _seenBySessions?: number[]; } export declare function fetchAndDeduplicatePeers(apiKey: string, allowedKeys?: Record): Promise; //# sourceMappingURL=peer-utils.d.ts.map