import type { KlawConfig } from "../config/types.klaw.js"; import type { DoctorPrompter } from "./doctor-prompter.js"; export type LegacyFlatAuthProfileRepairResult = { detected: string[]; changes: string[]; warnings: string[]; }; export declare function maybeRepairLegacyFlatAuthProfileStores(params: { cfg: KlawConfig; prompter: DoctorPrompter; now?: () => number; }): Promise;