import type { RepoProfile } from '../analyzers/types.js'; import type { ComplexityProfile } from '../analyzers/complexity.js'; import type { RoadmapDefinition, RoadmapSprint } from '../roadmap.js'; export interface BacklogAnalysis { todos: Array<{ type: string; text: string; file: string; line: number; }>; todosByModule: Record>; changelogUnreleased?: string[]; } export interface GeneratedSprint { roadmap: RoadmapDefinition; sprint: RoadmapSprint; } /** * Generate a first sprint plan from repo analysis data. * Uses TODO clusters from backlog and detected gaps to build tickets. */ export declare function generateFirstSprint(profile: RepoProfile, complexity: ComplexityProfile, backlog?: BacklogAnalysis): GeneratedSprint; //# sourceMappingURL=first-sprint.d.ts.map