/** Natural-language `/workflow` entry for the v3 grill. */ export declare const WORKFLOW_USAGE = "\u7528\u6CD5\uFF1A/workflow <\u76EE\u6807>\uFF08\u5373\u5174\uFF09 | /workflow run <\u540D\u79F0> | /workflow save last [\u540D\u79F0] | /workflow cancel | /workflow list\u3002"; export type WorkflowGrillTrigger = { kind: 'goal'; goal: string; } | { kind: 'usage'; }; /** * Parse only the v3 grill entry. Reserved v3 verbs are handled by the saved * workflow/daemon command paths before this parser is called. */ export declare function parseWorkflowGrillTrigger(content: string): WorkflowGrillTrigger | null; export declare function buildWorkflowGrillPrompt(goal: string): string; /** `/template` is a stable tombstone after the v2 runtime retirement. */ export declare function isLegacyTemplateCommand(content: string): boolean; export declare const LEGACY_TEMPLATE_RETIRED_MESSAGE: string; /** Shown when a user tries to start / author a workflow while the machine-wide * workflow feature is turned off (global config `workflow.enabled=false` or * `BOTMUX_WORKFLOW_ENABLED` set falsy). In-flight run management (cancel / * retry / grant) is intentionally NOT gated, so a run started before the flip * can still be wound down. */ export declare const WORKFLOW_DISABLED_MESSAGE: string; //# sourceMappingURL=workflow-slash-command.d.ts.map