/** * Project Management Processor * Handles top-level project management functions and integration * * @class ProjectManagementProcessor * @description Manages core project management document generation including * summaries, user stories, and risk analysis. * * @version 2.1.3 * @author Requirements Gathering Agent Team * @created 2024 * @updated June 2025 * @since 3.1.0 */ import { BaseAIProcessor } from "./BaseAIProcessor.js"; export declare class ProjectManagementProcessor extends BaseAIProcessor { getSummaryAndGoals(context: string): Promise; /** * Gets user stories */ getUserStories(context: string): Promise; /** * Gets risk analysis */ getRiskAnalysis(context: string): Promise; /** * Gets core values for the project */ getCoreValues(context: string): Promise; /** * Gets project purpose statement */ getProjectPurpose(context: string): Promise; /** * Gets mission, vision and core values */ getMissionVisionAndCoreValues(context: string): Promise; /** * Gets schedule network diagram */ getScheduleNetworkDiagram(context: string): Promise; /** * Gets milestone list */ getMilestoneList(context: string): Promise; /** * Gets schedule development input */ getDevelopScheduleInput(context: string): Promise; /** * Gets project statement of work */ getProjectStatementOfWork(context: string): Promise; /** * Gets business case */ getBusinessCase(context: string): Promise; } //# sourceMappingURL=ProjectManagementProcessor.d.ts.map