///
import { ImgProps } from "../util/Img";
import { IconProps } from "../util/Icon";
import { LearnMoreProps } from "../util/LearnMore";
import { WithTheme, WithoutTheme } from "../types";
export declare type FeatureWithImageProps = WithTheme<{
data: Array<{
title: string;
description: string;
} & WithoutTheme & WithoutTheme>;
}> & ImgProps;
export declare function FeatureWithImage({ data, imgSrc, imgNode, imgAlt, ...props }: FeatureWithImageProps): JSX.Element;