import ' rollup-plugin-inject-process-env';
import { FC, PropsWithChildren } from "react";
import { ChatUserInfo } from "@xapp/stentor-chat-widget";
import "./ChatMessagePart.scss";
export interface ChatMessagePartProps {
    readonly showAvatar: boolean;
    readonly user: ChatUserInfo;
    readonly avatarPosition?: string;
    readonly hideUserInfo?: boolean;
    readonly fullWidth?: boolean;
    readonly isStreaming?: boolean;
}
export declare const ChatMessagePart: FC<PropsWithChildren<ChatMessagePartProps>>;
