import { IRelationship } from "../../decorators/interfaces/relationship"; import { QueryCondition } from "./QueryCondition"; export declare type WithRelation = { model: keyof T; filter?: QueryCondition; relation?: IRelationship; with?: WithRelation | WithRelation[]; alias?: string; };