import React from "react";
export interface IMjmlAttributesProps {
    className?: string;
    cssClass?: string;
    mjmlClass?: string;
    children?: React.ReactNode;
}
export declare function MjmlAttributes({ children, ...props }: IMjmlAttributesProps): JSX.Element;
