/** @jsx jsx */ import * as React from "react"; interface Props extends Pick, HTMLDivElement>, "className" | "style"> { children: React.ReactNode; } /** * Component to render Feature Intro Image. * * If this component is rendered in the children of `FeatureIntroControl`, then * `FeatureIntroControl` will render this element in it's layout. Otherwise, it's * rendered as-is. */ export declare const FeatureIntroImage: React.FC; export {};