import Base from './base'; /** The supported mail transportation methods. */ export declare enum TransportType { SMTP = "smtp" } /** Contains settings for SMTP transportation. */ export default interface SMTPTransport extends Base { type: TransportType; from: string; host: string; port?: number; secure?: boolean; user?: string; pass?: string; }