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