/// import { BlogItemProps } from "./BlogItem"; import { AvatarProps } from "../util/Avatar"; import { WithoutTheme } from "../types"; export declare type BlogWithAvatarItemProps = BlogItemProps & WithoutTheme; export declare function BlogWithAvatarItem({ label, title, content, linkNode, linkText, onClick, views, comments, theme, color, includeWrapperBg, ...avatarProps }: BlogWithAvatarItemProps): JSX.Element;