export type Manifest = { since: number; count: number; namesSha256: string; }; export declare const defaultNamesPath: string; export declare const defaultManifestPath: string; export declare function getNamesFileContents(names: readonly string[]): string; export declare function createManifest(names: readonly string[], since: number): Manifest; export declare function readNamesFile(path: string): Promise; export declare function writeNamesFile(path: string, names: readonly string[]): Promise; export declare function readManifest(path: string): Promise; export declare function writeManifest(path: string, manifest: Manifest): Promise; export declare function ensureStoreFiles(namesPath?: string, manifestPath?: string): Promise; //# sourceMappingURL=store.d.ts.map