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