import { DataTestId } from '../../core/types/data-props.js'; import { StylingProps } from '../../core/types/styling-props.js'; import { WithChildren } from '../../core/types/with-children.js'; /** * @public */ export interface VisualProps extends WithChildren, StylingProps, DataTestId { } /** * Container for the Visual for the guided interaction overlays, e.g. an image or a video. * @public */ export declare const Visual: { (props: VisualProps): import("react/jsx-runtime").JSX.Element; displayName: string; };