export interface StateStore { load(): Promise; save(snapshot: TSnapshot): Promise; append?(event: TEvent): Promise; compact?(): Promise; }