import { type ReactNode } from 'react'; import { DataTestId } from '../../core/types/data-props.js'; import { StylingProps } from '../../core/types/styling-props.js'; /** * Accepted properties for the MessageContainer Prefix. * @public */ export interface MessageContainerPrefixProps extends StylingProps, DataTestId { /** Elements to be displayed in the prefix slot. */ children?: ReactNode; } /** * The MessageContainer Prefix component. * @public */ export declare const Prefix: (props: MessageContainerPrefixProps & import("react").RefAttributes) => import("react").ReactElement | null;