import { ICustomSmtpUpdateInput } from '@metad/contracts'; import { ICommand } from '@nestjs/cqrs'; export declare class CustomSmtpUpdateCommand implements ICommand { readonly input: ICustomSmtpUpdateInput; static readonly type = "[Custom SMTP] Update"; constructor(input: ICustomSmtpUpdateInput); }