import { ScorerConfig } from '../types/scorer.types'; import { SegmentFilter, RunScorerSettingsResponse } from '../types/runs.types'; /** * Service class for run-scoped operations. * Provides methods to manage scorer settings for runs (experiments or log streams). */ export declare class Runs { private client; private ensureClient; /** * Updates scorer settings for a specific run. * @param options - The run scorer settings options. * @param options.projectId - The unique identifier of the project. * @param options.runId - The unique identifier of the run (can be an experiment ID or log stream ID). * @param options.scorers - A list of scorer configurations to apply to the run. * @param options.segmentFilters - (Optional) A list of segment filters to apply to the run. * @returns A promise that resolves to the updated scorer settings response. */ updateScorerSettings(options: { projectId: string; runId: string; scorers: ScorerConfig[]; segmentFilters?: SegmentFilter[] | null; }): Promise; }