import type { BotConfig } from "../../config/config.js"; import type { AuthProfileIdRepairResult, AuthProfileStore } from "./types.js"; export declare function suggestOAuthProfileIdForLegacyDefault(params: { cfg?: BotConfig; store: AuthProfileStore; provider: string; legacyProfileId: string; }): string | null; export declare function repairOAuthProfileIdMismatch(params: { cfg: BotConfig; store: AuthProfileStore; provider: string; legacyProfileId?: string; }): AuthProfileIdRepairResult;