import type { RequirementsIntent } from "./requirements-intent-router.js"; export type RequirementsWorkflowSkill = { readonly name: "plan"; readonly domain: "planning"; readonly path: string; readonly reason: string; }; export declare function hasPersonaWorkflowOptIn(projectDir: string): boolean; export declare function hasRequirementsDraft(projectDir: string): boolean; export declare function selectedRequirementsWorkflowSkill(intent: RequirementsIntent): RequirementsWorkflowSkill; export declare function formatRequirementsWorkflowBlock(intent: RequirementsIntent): string;