import type { ExtensionAPI } from "@earendil-works/pi-coding-agent"; export interface ParsedMaterializeArgs { mode: "all" | "single-workflow"; workflowId?: string; } /** * Parse /forge:materialize arguments. * * Recognised forms: * (empty) → { mode: "all" } * --all → { mode: "all" } * workflows → { mode: "single-workflow", workflowId: "" } * workflows: → { mode: "single-workflow", workflowId: "" } */ export declare function parseMaterializeArgs(args: string): ParsedMaterializeArgs; export declare function registerMaterialize(pi: ExtensionAPI): void;