type Data = { subject: string; to: string[]; sender?: string; props?: any; }; type Message = { id: string; subject: string; senderId: string; userId: string; to: string[]; sentAt?: Date; status: 'queued' | 'sent' | 'failed' | 'delivered' | 'opened' | 'clicked'; }; export default function send(templateName: string, data: Data): Promise; export {}; //# sourceMappingURL=send.d.ts.map