import { UseCase } from '../../../core/domain/useCases/UseCase'; import { ICollectionsRepository } from '../repositories/ICollectionsRepository'; export declare class UnlinkCollection implements UseCase { private collectionsRepository; constructor(collectionsRepository: ICollectionsRepository); /** * Unlinks a collection from the collection that links to it * * @param {number| string} [linkedCollectionIdOrAlias] - The collection that is linked. Can be either a string (collection alias), or a number (collection id) * @param { number | string} [linkingCollectionIdOrAlias] - The collection that links to the linked collection. Can be either a string (collection alias), or a number (collection id) * @returns {Promise} -This method does not return anything upon successful completion. */ execute(linkedCollectionIdOrAlias: number | string, linkingCollectionIdOrAlias: number | string): Promise; }