import React from "react";
export interface IMjmlClassProps {
    name?: string;
    [prop: string]: string | undefined;
}
export declare function MjmlClass(props: IMjmlClassProps): React.JSX.Element;
