///
import { StepEntryIsolatedProps } from "./StepEntry";
import { ImgProps } from "../util/Img";
import { WithTheme } from "../types";
export declare type StepWithImageProps = WithTheme<{
steps: Array;
}> & ImgProps;
export declare function StepWithImage({ steps, imgSrc, imgNode, imgAlt, ...props }: StepWithImageProps): JSX.Element;