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