import { AddUpdatesResult, ReplaceUpdatesResult, StoredUpdates, UpdatesStore } from './UpdatesStore'; /** * Defines an implementation of UpdatesStore which keeps everything in memory. */ export declare class MemoryUpdatesStore implements UpdatesStore { private _branches; maxAllowedInstSize: number; getUpdates(branch: string): Promise; addUpdates(branch: string, updates: string[]): Promise; replaceUpdates(branch: string, updatesToRemove: StoredUpdates, updatesToAdd: string[]): Promise; clearUpdates(branch: string): Promise; reset(): void; } //# sourceMappingURL=MemoryUpdatesStore.d.ts.map