import React from "react";
export interface IMjmlStyleProps {
    inline?: boolean;
    children?: React.ReactNode;
    dangerouslySetInnerHTML?: {
        __html: string;
    };
}
export declare function MjmlStyle({ children, ...props }: IMjmlStyleProps): JSX.Element;
