import { Entity, EntityConstructorOptions, Reference } from '../entities/entity.js'; export declare function isRelationship(value: unknown): value is Relationship; export interface RelationshipConstructorOptions extends EntityConstructorOptions { from?: Reference; to?: Reference; } export declare abstract class Relationship extends Entity { _from: string; _to: string; constructor(data?: RelationshipConstructorOptions); protected keySeed(): unknown; } //# sourceMappingURL=relationship.d.ts.map