#!/usr/bin/env node import { WorkflowEngine } from "../workflows/engine.js"; import type { AgentStepContract, AgentStepSubmission, WorkflowDefinition, WorkflowSource } from "../workflows/types.js"; import { type WorkflowRunnerCommand } from "./workflow-runner-protocol.js"; export declare function validateAcceptedAssistantSubmission(submission: AgentStepSubmission, contract: AgentStepContract): { ok: true; value: AgentStepSubmission; } | { ok: false; error: string; }; export declare function executeRunnerRunCommand(engine: Pick, workflow: WorkflowDefinition, runId: string, workflowSource: WorkflowSource, command: WorkflowRunnerCommand): Promise; export declare function runWorkflowRunner(): Promise;