export interface DataStore { readonly push: (data: Record) => void; /** Returns total items currently in the file (including from previous runs). */ readonly count: () => number; readonly close: () => void; } export declare function makeDataStore(filePath: string): DataStore;