import type { Config } from '../../config/schema.js'; import type { WorkflowRunContextRef, WorkflowRunContextSnapshotRef } from '../domain/index.js'; export interface ResolvedWorkflowContextItem extends WorkflowRunContextRef { text: string; } export interface ResolvedWorkflowContext { projectId?: string; refs: WorkflowRunContextRef[]; snapshot: WorkflowRunContextSnapshotRef; instructions: string; } export declare function resolveWorkflowContext(input: { runId: string; projectId?: string; refs: WorkflowRunContextRef[]; config: Config; reuseSnapshotId?: string; }): Promise;