import { AwsSesSendResult, CoreAwsSesServiceClient } from "mongodb-stitch-core-services-aws-ses";
import { AwsSesServiceClient } from "../AwsSesServiceClient";
export default class AwsSesServiceClientImpl implements AwsSesServiceClient {
    private readonly proxy;
    constructor(proxy: CoreAwsSesServiceClient);
    sendEmail(to: string, from: string, subject: string, body: string): Promise<AwsSesSendResult>;
}
