import { NotePropsMeta } from "./foundation"; export declare type FileSystemCache = { version: number; }; export declare type NotesCache = { version: number; notes: NotesCacheEntryMap; }; export declare type NotesCacheEntryMap = { [key: string]: NotesCacheEntry; }; export declare type NotesCacheEntry = { hash: string; data: NotePropsMeta; };