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