import React from "react";
export interface IMjmlHtmlAttributeProps {
    children?: React.ReactNode;
    name?: string;
}
export declare function MjmlHtmlAttribute({ children, ...props }: IMjmlHtmlAttributeProps): React.JSX.Element;
