import { MJMLParsingOptions, MJMLJsonObject, MJMLParseError } from "mjml-core";
import React from "react";
export interface ConvertedHtml {
    html: string;
    json?: MJMLJsonObject;
    errors?: MJMLParseError[];
}
export declare function render(email: React.ReactElement, options?: MJMLParsingOptions): Promise<ConvertedHtml>;
