import { type ReactNode } from 'react'; import type { DataTestId } from '../../core/types/data-props.js'; import type { StylingProps } from '../../core/types/styling-props.js'; /** * 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) => import("react").ReactElement | null;