import { BaseRelationship } from "./base"; /** * HasMany relationship defines a relationship between two entities * where the owner of the relationship has many instance of the * related entity. * * For example: * * - A user HasMany books * - A user HasMany addresses */ export declare class HasMany extends BaseRelationship { type: "hasMany"; static isHasMany(relationship: any): relationship is HasMany; } //# sourceMappingURL=has-many.d.ts.map