import React from "react";
export interface IMjmlProps {
    children?: React.ReactNode;
    owa?: string;
    lang?: string;
}
export declare function Mjml({ children, ...props }: IMjmlProps): JSX.Element;
