import { IIntegration } from '@metad/contracts'; import { CommandBus, ICommandHandler } from '@nestjs/cqrs'; import { IntegrationService } from '../../integration.service'; import { IntegrationUpsertCommand } from '../upsert.command'; export declare class IntegrationUpsertHandler implements ICommandHandler { private readonly commandBus; private readonly service; constructor(commandBus: CommandBus, service: IntegrationService); execute(command: IntegrationUpsertCommand): Promise; }