///
import type { SessionMessageModel } from '@mindverse/accessor-open';
import type MessageItem from './model/message-item';
import { DevelopType } from '../..';
import { EAppMode } from '../../utils/const';
interface IProps {
msgList: MessageItem[];
hintList: SessionMessageModel[];
isLoading: boolean;
isOpenSessionLoading: boolean;
systemContent: string;
systemWarningContent: string;
inChatMode: boolean;
inMobile: boolean;
inIframe?: boolean;
mindId: string;
initMessage?: string;
refUserId: number | string;
shortcutLoading: boolean;
appMode: EAppMode;
inSharedHistory: boolean;
sessionId?: string;
developType: DevelopType;
}
declare function ChatList(props: IProps): import("react/jsx-runtime").JSX.Element;
declare const _default: import("react").MemoExoticComponent;
export default _default;