import React from 'react';
import { MsgType } from '@/_utils/chat';
import { ChatListProps, ChatListForwardRef } from 'z-react-ui/src/chat-list';
import { SendMsgProps } from 'z-react-ui/src/send-msg';
export interface ChatDataSource {
    id: number | string;
    msgType: MsgType;
    [props: string]: any;
}
export interface FieldNames {
}
export declare type ChatPanelProps = ChatListProps & SendMsgProps;
export declare type ForwardRef = ChatListForwardRef;
declare const _default: React.ForwardRefExoticComponent<ChatListProps & SendMsgProps & React.RefAttributes<any>>;
export default _default;
