import type { ResponseData } from "../../interfaces";
export type SendEmailOptions = {
    /**
     * Array of the recipient's info
     */
    recipients: {
        name?: string;
        email: string;
    }[];
    subject: string;
    content: string;
};
export type SendDiginextEmailResponse = ResponseData & {
    data: {
        succeed?: number;
        failure?: number;
    };
};
export declare function dxSendEmail(params: SendEmailOptions, dxKey: string, options?: {
    isDebugging?: boolean;
}): Promise<SendDiginextEmailResponse>;
//# sourceMappingURL=dx-email.d.ts.map