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