import React from "react"; import { ImgProps } from "../util/Img"; import { LearnMoreProps } from "../util/LearnMore"; import { WithTheme, WithoutTheme } from "../types"; export declare type ContentWithAvatarAndImageProps = WithTheme<{ title: string; description: string; content: string; iconNode?: React.ReactNode; }> & WithoutTheme & ImgProps; export declare function ContentWithAvatarAndImage({ title, description, content, imgSrc, iconNode, imgNode, theme, color, imgAlt, ...linkProps }: ContentWithAvatarAndImageProps): JSX.Element;