import type { CommandExecutor } from "#environments/executor"; import type { WorkflowDefinition } from "#workflows/definition"; export declare function runWorkflow(executor: CommandExecutor, definition: WorkflowDefinition, cacheTypes?: string[]): Promise<{ command: import("#environments/executor").CommandSpec; result: import("#environments/executor").CommandResult; }>; export declare function syntaxCheck(executor: CommandExecutor, files: string[]): Promise;