import { PartyEntity } from './PartyEntity';
export declare class PartyRelationshipEntity {
    id: string;
    left: PartyEntity;
    leftId: string;
    right: PartyEntity;
    rightId: string;
    ownerId?: string;
    tenantId?: string;
    createdAt: Date;
    lastUpdatedAt: Date;
    updateUpdatedDate(): void;
    checkRelationshipSides(): Promise<void>;
}
//# sourceMappingURL=PartyRelationshipEntity.d.ts.map