import * as React from 'react';
import { BoxProps } from '@mui/material/Box';
type Props = {
    isUser: boolean;
} & BoxProps;
declare const MessageComponentBox: React.FC<Props>;
export default MessageComponentBox;
