import { ICustomSmtp } from '@metad/contracts'; import { ICommandHandler } from '@nestjs/cqrs'; import { CustomSmtpService } from '../../custom-smtp.service'; import { CustomSmtpUpdateCommand } from '../custom-smtp.update.command'; export declare class CustomSmtpUpdateHandler implements ICommandHandler { private readonly customSmtpService; constructor(customSmtpService: CustomSmtpService); execute(command: CustomSmtpUpdateCommand): Promise; }