import React from "react"; import { HrefProps, PaddingProps } from "./types"; export declare const MjmlNavbarLink: ({ children, ...rest }: React.PropsWithChildren) => React.DOMElement<{}, Element>; export interface MjmlNavbarLinkProps { color?: React.CSSProperties["color"] | undefined; fontFamily?: string | undefined; fontSize?: string | number | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; lineHeight?: string | number | undefined; textDecoration?: string | undefined; textTransform?: string | undefined; }