import React, { FC } from 'react'; import { ThumborSettingType } from '../../Common/types'; declare type WithImagePropsType = { imgContainerClassName: string; imgClassName: string; detailContainerClassName: string; withImage: boolean; imageURL?: string; thumborSetting: ThumborSettingType; children: React.ReactNode; lazyLoadedImage?: boolean; widthImage?: number; heightImage?: number; }; declare const WithImage: FC; export default WithImage;