import type { BotConfig } from "../../config/config.js"; import { type SessionEntry } from "../../config/sessions.js"; export declare function clearSessionAuthProfileOverride(params: { sessionEntry: SessionEntry; sessionStore: Record; sessionKey: string; storePath?: string; }): Promise; export declare function resolveSessionAuthProfileOverride(params: { cfg: BotConfig; provider: string; agentDir: string; sessionEntry?: SessionEntry; sessionStore?: Record; sessionKey?: string; storePath?: string; isNewSession: boolean; }): Promise;