import RadixAccountSystem from '../account/RadixAccountSystem'; import RadixAtomUpdate from '../atom/RadixAtomUpdate'; import RadixAtomCacheProvider from './RadixAtomCacheProvider'; import { RadixAtom } from '../atom_model'; export default class RadixCacheAccountSystem implements RadixAccountSystem { readonly keyPair: any; name: string; atomCache: RadixAtomCacheProvider; constructor(keyPair: any, atomCache?: RadixAtomCacheProvider); processAtomUpdate(atomUpdate: RadixAtomUpdate): Promise; loadAtoms(): Promise; }