import type { SessionTrace } from "../../domain/loop/session-trace.js"; import type { EffectivenessScore } from "../../domain/loop/effectiveness-score.js"; export declare function writeTrace(workspaceRoot: string, trace: SessionTrace): Promise; export declare function appendScore(workspaceRoot: string, score: EffectivenessScore): Promise; export declare function readTraces(workspaceRoot: string, options?: { readonly limit?: number; }): Promise; export declare function readScores(workspaceRoot: string, options?: { readonly limit?: number; }): Promise; export declare function countTracesSinceLastExtraction(workspaceRoot: string): Promise; //# sourceMappingURL=trace-store.d.ts.map