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