import { PipeTransform } from '@nestjs/common';
import { JSONValue } from '../../types';
import { PatchRelationshipData } from '../../zod';
export declare class PatchRelationshipPipe implements PipeTransform<JSONValue, PatchRelationshipData> {
    private zodInputPatchRelationshipSchema;
    transform(value: JSONValue): PatchRelationshipData;
}
