import ' rollup-plugin-inject-process-env';
import { FC } from "react";
import "./ChatImage.scss";
interface Props {
    readonly imageUrl: string;
    readonly imageActionUrl?: string;
}
declare const ChatImage: FC<Props>;
export default ChatImage;
