import type { EventEntry, PendingRuntimeParentAction, RuntimeDelegationGuardrails, RuntimeDelegationAssignment, RuntimeExecutionAdapter, RuntimeParentAction } from "./types.js"; export declare function buildRuntimeParentAction({ runtime, sessionId, phase, role, assignment, promptArtifact, contextManifestArtifact, contextPackArtifact, expectedResultArtifact, }: { runtime: RuntimeExecutionAdapter; sessionId: string; phase: string; role: string; assignment: RuntimeDelegationAssignment; promptArtifact: string; contextManifestArtifact?: string; contextPackArtifact?: string; expectedResultArtifact: string; }): RuntimeParentAction; export declare function listPendingRuntimeParentActions({ events, taskId, policy, }: { events: EventEntry[]; taskId?: string; policy?: RuntimeDelegationGuardrails; }): PendingRuntimeParentAction[];