/** * Bundled workflow commands: `/deep-research`, `/adversarial-review`, `/code-review`, `/issue-delivery`, and `/fugu`. * They run a generated workflow script and print the final report. */ import { type ExtensionAPI } from "@earendil-works/pi-coding-agent"; import type { WorkflowManager } from "./workflow-manager.js"; export declare function registerBuiltinWorkflows(pi: ExtensionAPI, opts: { cwd: string; manager?: WorkflowManager; }): void;