import type { LocalBatch } from './types.js'; export declare function loadBatches(): LocalBatch[]; /** Appends `batch` to the persistent store. Reads existing entries first. */ export declare function saveBatch(batch: LocalBatch): void; export declare function findBatch(batchId: string): LocalBatch | undefined;