/// import { IconProps } from "../util/Icon"; import { WithTheme, WithoutTheme } from "../types"; export declare type ContentWithIconItemProps = WithTheme<{ title: string; description: string; }> & WithoutTheme; export declare function ContentWithIconItem({ title, description, theme, color, ...iconProps }: ContentWithIconItemProps): JSX.Element;