/// import { ImgProps } from "../util/Img"; import { WithTheme } from "../types"; export declare type ContentWithImageSmallItemProps = WithTheme<{ title: string; label: string; description: string; }> & ImgProps; export declare function ContentWithImageSmallItem({ title, label, description, imgSrc, imgNode, imgAlt, ...props }: ContentWithImageSmallItemProps): JSX.Element;