import * as React from 'react'; import { BoxProps } from '@mui/material/Box'; import { SlotValue } from '../../core/usePropsSlots'; type Props = { text: string; id?: string; rootComponent: SlotValue; rootComponentProps: BoxProps | undefined; inProgress: boolean; }; export declare const ChatMarkdownBlockRoot: import("@emotion/styled").StyledComponent & Omit, HTMLDivElement>, "ref"> & { ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject | null | undefined; }, keyof import("@mui/system").BoxOwnProps> & import("@mui/system").MUIStyledCommonProps, {}, {}>; declare const MessageMarkdownBlock: React.FC; export default MessageMarkdownBlock;