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