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