import React from 'react'; import { ArticleImageProps } from '../article-image/article-image'; import { ArticleTextProps } from '../article-text/article-text'; export interface ArticleProps { children?: React.ReactNode; className?: string; styles?: { root: {}; }; isRow?: boolean; /** @ArticleImage proptypes */ articleImageProps?: ArticleImageProps; /** @ArticleText proptypes */ articleTextProps?: ArticleTextProps; setInnerHTML?: boolean; smallSpacing?: boolean; fontColor?: string; } declare const Article: React.FC; export default Article;