import type { API } from 'zca-js';
import { GetHistoryParams, ChatHistoryResult, ParsedMessage } from './types';
export declare function pickNextCursors(messages: ParsedMessage[]): string[];
export declare function getChatHistory(api: API, params: GetHistoryParams, listener: any, timeout?: number): Promise<ChatHistoryResult>;
