import { AggregateRoot } from './aggregate-root'; import { AggregateId } from './aggregate-id'; export declare abstract class AggregateFactory> { abstract create(aggregateId: I): A; }