import { CommandBus, ICommandHandler } from '@nestjs/cqrs'; import { IntegrationService } from '../../integration.service'; import { IntegrationDelCommand } from '../delete.command'; export declare class IntegrationDelHandler implements ICommandHandler { private readonly commandBus; private readonly service; constructor(commandBus: CommandBus, service: IntegrationService); execute(command: IntegrationDelCommand): Promise; }