import { IDocCollabUsers } from '../types'; export interface AwarenessIdentity { name: string; color: string; isEns: string | boolean; } export declare const PLACEHOLDER_COLOR = "#9CA3AF"; export declare function buildIdentityMap(states: Map>): Map; export declare function mergePresence(roomMembers: string[], identityBySocketId: Map): IDocCollabUsers[]; export declare function identitySignature(roomMembers: string[], identityBySocketId: Map): string;