import React from "react"; import { ClassNameProps, PaddingProps } from "./types"; export declare const MjmlAccordionText: ({ children, ...rest }: React.PropsWithChildren) => React.DOMElement<{}, Element>; export interface MjmlAccordionTextProps { color?: React.CSSProperties["color"] | undefined; fontFamily?: string | undefined; fontSize?: string | number | undefined; backgroundColor?: React.CSSProperties["backgroundColor"] | undefined; }