import { type DataTestId, type StylingProps, type WithChildren } from '@dynatrace/strato-components/core'; /** * @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.js").JSX.Element; displayName: string; };