/**
* Idempotent. Renames `
/trackedIssues.json` to
* `/trackedPlans.json` if the new file does not already exist, then
* rewrites the JSON payload to the new schema (renames
* `repoOwner`/`repoName` fields, drops `job*` fields, sets `version: '3.0'`).
*
* Safe to call once per process. No-op when neither file is present, or
* when the user configured a custom (non-default) `trackingFile` name.
*/
export declare function migrateLocalTrackingFile(configuredFilePath: string): Promise;
export declare function transformLegacyTrackingJson(input: unknown): {
version: string;
lastUpdated: string;
plans: Array>;
};
//# sourceMappingURL=local-file-migration.d.ts.map