interface IParam { mindId: string; lastSessionId: string; refUserId: string | number; } declare function loadHistory({ refUserId, mindId, lastSessionId }: IParam): Promise; export default loadHistory;