import { EntityRelation } from '../../../../utils/nestjs-shared';
import { MicroOrmService } from '../../service';
import { ObjectLiteral } from '../../../../types';
export declare function getRelationship<E extends ObjectLiteral, Rel extends EntityRelation<E>>(this: MicroOrmService<E>, id: number | string, rel: Rel): Promise<E>;
