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