import { IStorageFile } from '@metad/contracts'; import { CommandBus, ICommandHandler } from '@nestjs/cqrs'; import { StorageFileService } from '../../storage-file.service'; import { StorageFileCreateCommand } from '../storage-file-create.command'; export declare class StorageFileCreateHandler implements ICommandHandler { private readonly fileService; private readonly _commandBus; constructor(fileService: StorageFileService, _commandBus: CommandBus); execute(command: StorageFileCreateCommand): Promise; }