import { Model } from '../../../model'; import { RelationQueryBuilder } from '../builders/relationQueryBuilder'; import { ExtractModelAttributesType } from '../../../types/extractModelAttributesType'; import { ExtractModelPersistedAttributesType } from '../../../types/extractModelPersistedAttributesType'; import { ExtractModelRelationsType } from '../../../types/extractModelRelationsType'; export declare class HasMany, PersistedAttributes = ExtractModelPersistedAttributesType, Relations = ExtractModelRelationsType> extends RelationQueryBuilder { associate(key: string | number): Promise; dissociate(key: string | number): Promise; }