import type { AuthProfileStore } from "./types.js"; import { type BotConfig } from "../../config/config.js"; type ResolveApiKeyForProfileParams = { cfg?: BotConfig; store: AuthProfileStore; profileId: string; agentDir?: string; }; export declare function resolveApiKeyForProfile(params: ResolveApiKeyForProfileParams): Promise<{ apiKey: string; provider: string; email?: string; } | null>; export {};