import { TenantIdLike } from '@dolittle/sdk.execution'; import { IEventStore } from '../IEventStore'; /** * Defines a builder for {@link IEventStore}. */ export declare abstract class IEventStoreBuilder { /** * Build an {@link IEventStore} for the given tenant. * @param {TenantIdLike} tenantId - The tenant id. * @returns {IEventStore} The event store. */ abstract forTenant(tenantId: TenantIdLike): IEventStore; } //# sourceMappingURL=IEventStoreBuilder.d.ts.map