/// import { LearnMoreProps } from "../util/LearnMore"; import { StatProps } from "../util/Stat"; import { WithTheme, WithoutTheme } from "../types"; export declare type BlogItemProps = WithTheme<{ label: string; title: string; content: string; includeWrapperBg?: boolean; }> & WithoutTheme & WithoutTheme; export declare function BlogItem({ label, title, content, linkNode, linkText, comments, views, onClick, includeWrapperBg, ...props }: BlogItemProps): JSX.Element;