import { type ReactNode } from 'react'; import { type DataTestId, type StylingProps } from '@dynatrace/strato-components/core'; /** * Accepted properties for the MessageContainer Title. * @public */ export interface MessageContainerTitleProps extends StylingProps, DataTestId { /** Elements to be displayed in the title slot. */ children: ReactNode; } /** * The MessageContainer Title component. * @public */ export declare const Title: (props: MessageContainerTitleProps & import("react").RefAttributes) => React.ReactElement | null;