type DownloadMeta = { branchId: string; fileId: string; versionId: string; locale: string; inputPath?: string; }; export declare function recordDownloaded(filePath: string, meta?: DownloadMeta): void; /** * Track a file that was re-merged with the source * so that postprocessing still runs on it. */ export declare function recordRemerged(filePath: string): void; export declare function getDownloaded(): Set; /** Files that need postprocessing: downloaded OR re-merged */ export declare function getNeedsPostprocessing(): Set; export declare function getDownloadedMeta(): Map; export declare function clearDownloaded(): void; export {};