import { FC, ReactType } from 'react'; import { LinkProps } from '../../blocks/Link'; import { ImageProps } from '../../blocks/Image'; import { PartnerListProps } from '../PartnerList'; export interface BannerProps { Image?: ReactType; ImageProps?: { fixed?: unknown; imgStyle?: unknown; style?: unknown; svg?: { title?: string; description?: string; svg?: { absolutePath?: string; content?: string; dataURI?: string; originalContent?: string; relativePath?: string; }; file?: { contentType?: string; url?: string; fileName?: string; details?: { image?: { width?: string; height?: string; }; }; }; fluid?: unknown; }; }; isSvgImage?: boolean; title?: string; subtitle?: string; pageType?: string; cta?: LinkProps; LogoProps?: ImageProps; Logo?: ReactType; Link?: ReactType; CategoryTab?: ReactType; FeaturedPartnersList?: ReactType; FeaturedPartnersListProps?: PartnerListProps; bannerBackgroundColor?: string; isPackage?: boolean; } declare const Banner: FC; export default Banner;