import React from 'react'; import { BaseStyles, ThemeStyles } from '../../../utils/types/base-styles.type'; import { LinkWrapperProps } from '../../../common/links/link-wrapper/link-wrapper'; export type ArticleTitleProps = { styles?: BaseStyles; text?: string; maxLineCount?: number; truncateText?: string; elementType?: React.ElementType; textTrunateElementType?: string; textTruncateChild?: string; useTextTruncate?: boolean; children?: any; linkProps?: LinkWrapperProps; theme?: ThemeStyles; }; declare const ArticleTitle: React.FC; export default ArticleTitle;