import { type LucidModel, type LucidRow } from '../../types/model.js'; import { type HasManyRelationContract } from '../../types/relations.js'; import { type RelationCallback, type FactoryModelContract, type FactoryRelationContract, type FactoryBuilderQueryContract } from '../../types/factory.js'; import { BaseRelation } from './base.js'; /** * Has many to factory relation */ export declare class HasMany extends BaseRelation implements FactoryRelationContract { relation: HasManyRelationContract; constructor(relation: HasManyRelationContract, factory: () => FactoryBuilderQueryContract>); /** * Make relationship and set it on the parent model instance */ make(parent: LucidRow, callback?: RelationCallback, count?: number): Promise; /** * Persist relationship and set it on the parent model instance */ create(parent: LucidRow, callback?: RelationCallback, count?: number): Promise; }