import React from "react"; import { ClassNameProps, PaddingProps } from "./types"; export declare const MjmlText: ({ children, ...rest }: React.PropsWithChildren) => JSX.Element; export interface MjmlTextProps { color?: React.CSSProperties["color"] | undefined; fontFamily?: string | undefined; fontSize?: string | number | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; lineHeight?: string | undefined; letterSpacing?: string | undefined; height?: string | number | undefined; textDecoration?: string | undefined; textTransform?: string | undefined; align?: string | undefined; containerBackgroundColor?: React.CSSProperties["backgroundColor"] | undefined; }