import { FC } from 'react'; export declare type ArticleProps = { slug: string; getTitle: (msg: string) => void; containerClassName?: string; loadingComponent?: any; errorComponent?: any; }; declare const Article: FC; export default Article;