import { UseCase } from '../../../core/domain/useCases/UseCase'; import { ITemplatesRepository } from '../repositories/ITemplatesRepository'; export declare class UnsetTemplateAsDefault implements UseCase { private templatesRepository; constructor(templatesRepository: ITemplatesRepository); /** * Removes the default template for the specified collection. * * @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'. */ execute(collectionIdOrAlias?: number | string): Promise; }