import React from 'react'; import { LinkWrapperProps } from '../links/link-wrapper/link-wrapper'; import { TitleProps } from './article-title'; import { BodyProps } from './article-body'; import { StampProps } from './article-stamp'; export declare const TYPES_OF_CHILDREN_IN_ORDER: string[]; export declare const createBaseProps: ({ hasLeftSpacing, hasTopSpacing, smallSpacing, fontColor, }: { hasLeftSpacing?: boolean; hasTopSpacing?: boolean; smallSpacing?: boolean; fontColor?: string | null; }) => ArticleTextProps; export type ArticleTextProps = { children?: React.ReactNode; className?: string; styles?: { root: {}; }; link?: string; hasTopSpacing?: boolean | undefined; hasLeftSpacing?: boolean | undefined; smallSpacing?: boolean | undefined; fontColor?: string | null; titleProps?: TitleProps | undefined; bodyProps?: BodyProps; stampProps?: StampProps; linkProps?: LinkWrapperProps; childOrder?: typeof TYPES_OF_CHILDREN_IN_ORDER; setInnerHTML?: boolean; }; declare const ArticleText: React.FC; export default ArticleText;