import type { RoadmapDefinition, RoadmapSprint } from '../../core/index.js'; /** * `slope sprint plan --sprint=N [--output=path]` — generate a markdown * implementation plan from roadmap + vision + recent hazards. * * Implements GH #312. Pairs with `slope sprint begin` (S88-3) which * surfaces "next ticket" but not the full plan. * * Output sections: * - Objective (sprint theme) * - Tickets (table with key/title/club/complexity) * - Dependencies (sprint depends_on + completed status) * - Recommended order (intra-sprint depends_on resolution) * - Required gates * - Hazards (filtered by sprint scope keywords) * - Acceptance criteria stub * - Suggested commit boundaries */ export declare function sprintPlanCommand(args: string[]): Promise; export declare function renderSprintPlan(sprint: RoadmapSprint, roadmap: RoadmapDefinition, hazardLines: string[]): string; //# sourceMappingURL=sprint-plan.d.ts.map