import { Aggregate } from './aggregate'; import { Context } from './context'; import { Repository } from './repository'; export declare class AggregateRepository extends Repository { private type; constructor(context: Context, type: new () => T); getById(id: string): Promise; }