import type { CliRunResult } from "./bearshell.js"; import type { WorkflowStateWriteOptions } from "./workflow-state-conflict.js"; type WorkflowOptions = WorkflowStateWriteOptions & { readonly full?: boolean; readonly projectDir?: string; readonly stdin?: string; }; export declare function runWorkflowCommand(args: readonly string[], options?: WorkflowOptions, invocationName?: string): CliRunResult; export {};