import { ToolHistoryReader } from "./tool-history-store.js"; export interface ToolHistoryProjection { readonly text: string; readonly recordCount: number; } /** * Build the cold-reseed-only, provider-neutral text projection. Historical * content is deliberately framed as untrusted data and never replayed as a * structured tool-use/result pair. */ export declare function buildToolHistoryProjection(reader: ToolHistoryReader, logicalConversationId: string, currentConversationId: string, currentRunId: string, excludedRecordIds?: ReadonlySet): ToolHistoryProjection | undefined; //# sourceMappingURL=tool-history-projection.d.ts.map