/// import { IconProps } from "../util/Icon"; import { LearnMoreProps } from "../util/LearnMore"; import { WithTheme, WithoutTheme } from "../types"; export declare type FeatureWithIconItemProps = WithTheme<{ iconPlacement?: "start" | "end"; outerClass?: string; innerClass?: string; tightClass?: string | null; title: string; description: string; }> & WithoutTheme & WithoutTheme; export declare function FeatureWithIconItem({ title, description, linkNode, onClick, linkText, theme, color, tightClass, iconPlacement, outerClass, innerClass, ...iconProps }: FeatureWithIconItemProps): JSX.Element;