import { IScreenshot, IStorageFile, UploadedFile } from '@metad/contracts'; import { StorageFileService } from './storage-file.service'; import { StorageFile } from './storage-file.entity'; export declare class StorageFileController { private readonly storageFileService; constructor(storageFileService: StorageFileService); create(entity: StorageFile, file: UploadedFile): Promise; createUrl(entity: StorageFile): Promise; delete(id: IScreenshot['id']): Promise; }