import { AtomStore } from './AtomStore'; import { Atom, AtomId } from './Atom2'; /** * Defines a class that implements an in-memory implementation of an AtomStore. */ export declare class MemoryAtomStore implements AtomStore { /** * The map of cause IDs to atoms for the cause. */ private _causeIndex; /** * The map of hashes to the atom for the hash. */ private _hashIndex; init(): Promise; add(atoms: Atom[]): Promise; findByCause(cause: AtomId): Promise[]>; findByHashes(hashes: string[]): Promise[]>; } //# sourceMappingURL=MemoryAtomStore.d.ts.map