import type { ExtensionAPI } from "@earendil-works/pi-coding-agent"; export interface RegisterRunWorkflowOptions { cwd?: string; /** Explicit single search dir. If set, overrides the CWD-first/bundled-fallback resolution. */ workflowsDir?: string; /** Bundled workflows shipped with the package — used as fallback when CWD/workflows/ doesn't exist. */ bundledWorkflowsDir?: string; } export declare function registerRunWorkflow(pi: ExtensionAPI, options?: RegisterRunWorkflowOptions): void;