/// import { BlogItemProps } from "./BlogItem"; import { ImgProps } from "../util/Img"; import { WithTheme, WithoutTheme } from "../types"; export declare type BlogWithImageItemProps = WithTheme & WithoutTheme; export declare function BlogWithImageItem({ label, title, content, linkNode, views, comments, onClick, linkText, theme, color, includeWrapperBg, ...imgProps }: BlogWithImageItemProps): JSX.Element;