import type { WorkflowRunSummary, WorkflowRunView } from '../domain/run.js'; export declare class WorkflowRunIndexStore { upsert(agentId: string, view: WorkflowRunView): void; list(agentId: string, options?: { limit?: number; taskId?: string; projectId?: string; }): WorkflowRunSummary[]; }