import type { SmtpSecurity } from './SmtpSecurity'; export type TestSmtpParams = { host: string; port: number; from: string; to: string; username: string; password: string; security: SmtpSecurity; };