/** @jsx jsx */ import React from "react"; import { As } from "../shared/createElementFromAs"; /** * The direction of either the tooltip coming from the wizard * or the image associated with the wizard. * */ export declare type Direction = "top" | "bottom" | "left" | "right"; interface FeatureIntroControlProps extends Pick, HTMLDivElement>, "className" | "style"> { /** * The placement of the image relative to the text. */ imagePlacement?: Direction; /** * Override how the outermost container is rendered. * * @default "div" */ containerAs?: As; /** * This ID will be used to tie all components together with accessibility */ id?: string; /** * Override the default width */ width?: string; /** * Override the default height */ height?: string; } declare const FeatureIntroControl: React.FC; declare const FeatureIntroControlWrapper: React.FC>; export { FeatureIntroControlWrapper as FeatureIntroControl };