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