import type { KlawConfig } from "../config/types.klaw.js"; import type { DoctorPrompter } from "./doctor-prompter.js"; export declare function noteLegacyCodexProviderOverride(cfg: KlawConfig): void; export declare function resolveUnusableProfileHint(params: { kind: "cooldown" | "disabled"; reason?: string; }): string; export declare function formatOAuthRefreshFailureDoctorLine(params: { profileId: string; provider: string; message: string; }): string | null; export declare function noteAuthProfileHealth(params: { cfg: KlawConfig; prompter: DoctorPrompter; allowKeychainPrompt: boolean; }): Promise;