import { SES } from 'aws-sdk/clients/all'; declare type SendEmailParams = { recipient: string; html: string; text: string; subject: string; source: string; }; export declare class EmailDispatcher { private readonly ses; constructor(ses: SES); send: ({ recipient, html, text, subject, source }: SendEmailParams) => Promise>; } export {};