import type { BotConfig } from "../config/config.js"; export type AgentAvatarResolution = { kind: "none"; reason: string; } | { kind: "local"; filePath: string; } | { kind: "remote"; url: string; } | { kind: "data"; url: string; }; export declare function resolveAgentAvatar(cfg: BotConfig, agentId: string): AgentAvatarResolution;