import { EventStore } from '../internal_common/eventStore'; import { SnapshotStore } from '../snapshotStore'; import { ActyxOpts } from '../types'; export declare type Ret = { eventStore: EventStore; close: () => void; sourceId: string; snapshotStore: SnapshotStore; }; export declare const mkV1eventStore: (axOpts: ActyxOpts) => Promise;