import { FileSystemStorage } from '../engine/file-system-storage.js'; import { type RegistryManifest } from './types.js'; export declare function recoverBrowserAcquisitionJournals(storage: FileSystemStorage, manifest: RegistryManifest): Promise; export declare class BrowserAcquisitionJournal { private readonly storage; private readonly acquisitionId; private readonly entries; constructor(storage: FileSystemStorage, acquisitionId: string); recordStoragePath(storagePath: string): Promise; recordStoragePaths(storagePaths: readonly string[]): Promise; cleanupUncommitted(manifest: RegistryManifest): Promise; clear(): Promise; private write; private file; }