import { UseCase } from '../../../core/domain/useCases/UseCase'; import { ICollectionsRepository } from '../repositories/ICollectionsRepository'; export declare class DeleteCollectionFeaturedItems implements UseCase { private collectionsRepository; constructor(collectionsRepository: ICollectionsRepository); /** * Deletes all featured items from a collection, given a collection identifier. * * @param {number | string} [collectionIdOrAlias = ':root'] - A generic collection identifier, which can be either a string (for queries by CollectionAlias), or a number (for queries by CollectionId) * If this parameter is not set, the default value is: ':root' * @returns {Promise} - This method does not return anything upon successful completion. * @throws {WriteError} - If there are errors while writing data. */ execute(collectionIdOrAlias?: number | string): Promise; }