import type { ContactInquiry, RepairInquiry, SmtpSettings } from "@/lib/admin/types"; export type PublicSmtpSettings = Omit & { hasPassword: boolean; }; export type MailSendResult = { ok: boolean; error?: string; }; export type ContactMailInput = ContactInquiry; export type RepairMailInput = RepairInquiry;