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