import { type MessageMetaProps } from '@mui/x-chat-headless'; export interface ChatMessageInlineMetaProps extends MessageMetaProps {} /** * Wrapper that renders a spacer + the MessageMeta absolutely positioned at the * bottom-right of the parent bubble. Uses the Telegram-style "spacer + absolute * positioning" trick so the meta appears inline with short text and at the * bottom-right for long text. * * Must be rendered inside a bubble with `position: relative`. */ declare function ChatMessageInlineMeta(props: ChatMessageInlineMetaProps): import("react/jsx-runtime").JSX.Element; declare namespace ChatMessageInlineMeta { var propTypes: any; } export { ChatMessageInlineMeta };