import type { AgentMessageHistoryPage } from '../../shared/messages.js'; export declare const SLACK_USER_ID: RegExp; export interface AvatarEnrichmentDeps { loadAgent: (agentId: string) => Promise<{ id: string; slack?: { botToken?: string; teamId?: string; }; }>; getWebClient: (agentId: string) => Promise; resolveAvatar: (args: { client: unknown; teamId: string; userId: string; }) => Promise; } export declare function resolveAvatarsForUsers(agentId: string, userIds: Iterable, deps?: AvatarEnrichmentDeps): Promise>; export declare function enrichInboundAvatars(agentId: string, page: AgentMessageHistoryPage, deps?: AvatarEnrichmentDeps): Promise; //# sourceMappingURL=message-profiles.d.ts.map