import { type DataTestId, type StylingProps, type WithChildren } from '@dynatrace/strato-components/core'; /** * @public */ export interface TitleProps extends WithChildren, StylingProps, DataTestId { } /** * The title of the guided interaction overlays. * @public */ export declare const Title: { (props: TitleProps): import("react/jsx-runtime.js").JSX.Element; displayName: string; };