/// import type MessageItem from '../components/chat/model/message-item'; interface IParam { closeExpand(): void; isExpand: boolean; msgList: MessageItem[]; } interface IRetrun { shortChatRef: React.RefObject; showShowMsgState: boolean; } declare function useShortChat(param: IParam): IRetrun; export default useShortChat;