import React from "react";
export interface IMjmlBodyProps {
    /** MJML default value: 600px */
    width?: string | number;
    backgroundColor?: React.CSSProperties["backgroundColor"];
    className?: string;
    cssClass?: string;
    mjmlClass?: string;
    children?: React.ReactNode;
}
export declare function MjmlBody({ children, ...props }: IMjmlBodyProps): JSX.Element;
