import { NamedServiceClientFactory } from "mongodb-stitch-react-native-core";
import { AwsSesSendResult } from "mongodb-stitch-core-services-aws-ses";
export interface AwsSesServiceClient {
    sendEmail(to: string, from: string, subject: string, body: string): Promise<AwsSesSendResult>;
}
export declare namespace AwsSesServiceClient {
    const factory: NamedServiceClientFactory<AwsSesServiceClient>;
}
