import * as Aws from "./aws-base"; export interface Opts extends Aws.Opts { source: string; replyTo: string; domain: string; arn: string; } export interface EmailRequest { to?: string[]; cc?: string[]; bcc?: string[]; subject: string; body: string; bodyIsHtml: boolean; } export declare class SESv2 extends Aws.Base { private _ses; private _source; private _replyTo; private _arn; constructor(name: string, opts: Opts); start(): Promise; stop(): Promise; healthCheck(): Promise; send(request: EmailRequest): Promise; }