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