import { FC } from 'react'; import { ThumborSettingType } from '../Common/types'; export declare type BannerPropsType = { imageClassName?: string; imageContainerClassName?: string; loadingComponent?: any; errorComponent?: any; thumborSetting?: ThumborSettingType; classes?: { imageClassName?: string; imageContainerClassName?: string; linkClassName?: string; }; Carousel?: any; children?: any; lazyLoadedImage?: boolean; widthImage?: number; heightImage?: number; [otherProp: string]: any; }; /** * @deprecated Consider using Banner for latest support. */ declare const BannerCSR: FC; export default BannerCSR;