import type { Settings } from '../types/index.js'; type DownloadMeta = { branchId: string; fileId: string; versionId: string; locale: string; }; /** * Persist postprocessed content hashes for recently downloaded files into gt-lock.json. */ export declare function persistPostProcessHashes(settings: Settings, includeFiles: Set | undefined, downloadedMeta: Map): void; export {};