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