export interface ParsedResearchContext { id: string; label: string; content: string; from: string; } export interface ParseResult { researchContexts: ParsedResearchContext[]; cleanContent: string; } export declare function parseResearchContext(content: string): ParseResult; export declare function formatResearchContextForMessage(contexts: Array<{ sessionId: string; label: string; content: string; }>): string; //# sourceMappingURL=parseResearchContext.d.ts.map