import type { ListScoresResponse, SaveScorePayload, ScoreRowData, ScoringSource } from '../../../evals/types.js'; import type { StoragePagination } from '../../types.js'; import type { InMemoryDB } from '../inmemory-db.js'; import { ScoresStorage } from './base.js'; export declare class ScoresInMemory extends ScoresStorage { private db; constructor({ db }: { db: InMemoryDB; }); dangerouslyClearAll(): Promise; getScoreById({ id }: { id: string; }): Promise; saveScore(score: SaveScorePayload): Promise<{ score: ScoreRowData; }>; listScoresByScorerId({ scorerId, pagination, entityId, entityType, source, }: { scorerId: string; pagination: StoragePagination; entityId?: string; entityType?: string; source?: ScoringSource; }): Promise; listScoresByRunId({ runId, pagination, }: { runId: string; pagination: StoragePagination; }): Promise; listScoresByEntityId({ entityId, entityType, pagination, }: { entityId: string; entityType: string; pagination: StoragePagination; }): Promise; listScoresBySpan({ traceId, spanId, pagination, }: { traceId: string; spanId: string; pagination: StoragePagination; }): Promise; } //# sourceMappingURL=inmemory.d.ts.map