import React from "react";
export interface IMjmlAllProps {
    className?: string;
    cssClass?: string;
    mjmlClass?: string;
    [prop: string]: string | undefined;
}
export declare function MjmlAll(props: IMjmlAllProps): React.JSX.Element;
