type SendMailOptions = {
    apiKey: string;
    to: string;
    subject: string;
    text: string;
};
declare function sendMail({ apiKey, to, subject, text, }: SendMailOptions): Promise<{
    success: boolean;
}>;
export default sendMail;
