import type React from "react"; export declare const supportEmail = "support@samepage.network"; declare const sendEmail: ({ to, body, subject, from, replyTo, }: { to?: string | string[] | undefined; body: React.ReactElement | string; subject: string; from?: string | undefined; replyTo?: string | string[] | undefined; }) => Promise; export default sendEmail;