import { UseCase } from '../../../core/domain/useCases/UseCase'; import { IFilesRepository } from '../repositories/IFilesRepository'; export declare class GetFileDownloadCount implements UseCase { private filesRepository; constructor(filesRepository: IFilesRepository); /** * Provides the download count for a particular File. * * @param {number | string} [fileId] - The file identifier, which can be a string (for persistent identifiers), or a number (for numeric identifiers). * @returns {Promise} */ execute(fileId: number | string): Promise; }