import React from 'react';
import { Message } from 'softchatjs-core';

type Props = {
    message: Message;
    isPending?: boolean;
    recipientId: string;
    position?: "left" | "right";
};
declare function MediaMessage(props: Props): React.JSX.Element;

export { MediaMessage as default };
