import { CommandBus, ICommandHandler } from '@nestjs/cqrs'; import { StorageFileService } from '../../storage-file.service'; import { DeployWebappCommand } from '../deploy-webapp.command'; export declare class DeployWebappHandler implements ICommandHandler { private readonly fileService; private readonly _commandBus; constructor(fileService: StorageFileService, _commandBus: CommandBus); execute(command: DeployWebappCommand): Promise; }