import React from 'react'; import { ArticleImageProps } from '../article-image/article-image'; import { MastheadBannerSectionProps } from './masthead-banner-section'; import { SectionProps } from '../section/section'; interface SubMastheadBannerProps { ArticleImage: React.FC; Section: React.FC; } export interface MastheadBannerProps { children?: React.ReactNode; className?: string; styles?: { root?: any; }; isRow?: boolean; isReversed?: boolean; isSectionOnTop?: boolean; sectionProps?: SectionProps; articleImageProps?: ArticleImageProps; } declare const MastheadBanner: React.FC & SubMastheadBannerProps; export default MastheadBanner;