import ' rollup-plugin-inject-process-env';
import { FC } from "react";
import { ChatMsgDetail } from "../../store/ChatAction";
import { OpenUrlCallback } from "../../hooks/useOpenUrlCallback";
export interface ChatMarkdownMessageProps {
    readonly message: ChatMsgDetail;
    readonly sibling: boolean;
    readonly time?: string;
    onOpenUrl: OpenUrlCallback;
}
export declare const ChatMarkdownMessage: FC<ChatMarkdownMessageProps>;
