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 ContentProps extends WithChildren, StylingProps, DataTestId { } /** * The content of the guided interaction overlays. * @public */ export declare const Content: { (props: ContentProps): import("react/jsx-runtime").JSX.Element; displayName: string; };