import { Type } from '@nestjs/common'; import { AggregateRoot } from '../aggregate-root'; import { EventBus } from '../event-bus'; export declare class AggregateRootStorage { private static storage; static add(type: Type): void; static mergeContext(eventBus: EventBus): void; }