import { AggregateRoot } from './AggregateRoot';
/**
 * Defines the callback for performing an action on an implementation of {@link AggregateRoot}.
 */
export declare type AggregateRootAction<TAggregate extends AggregateRoot> = (aggregateRoot: TAggregate) => void | Promise<void>;
//# sourceMappingURL=AggregateRootAction.d.ts.map