import { MessageChunk, ChunkIdx, ChatLogs, ChatLogType } from '../llm/index.js'; import { Recombiner } from '../rag/index.js'; export declare class MessageRecombiner { static standard(tokenLimit: number, chatLogs: ChatLogs, chatLogType: ChatLogType, initChunks: ChunkIdx[]): Recombiner; }