import React from 'react'; import { LinkWrapperProps } from 'src/common/links/link-wrapper/link-wrapper'; export interface ArticleImageBackgroundProps { styles?: { root?: any; }; src?: string; alt?: string; description?: string; ratio?: string; isCalcRatio?: boolean; fullWidth?: boolean; linkProps?: LinkWrapperProps; } declare const ArticleImageBackground: React.FC; export default ArticleImageBackground;