/**
 * 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<string | null>;
    /**
     * Gets user stories
     */
    getUserStories(context: string): Promise<string | null>;
    /**
     * Gets risk analysis
     */
    getRiskAnalysis(context: string): Promise<string | null>;
    /**
     * Gets core values for the project
     */
    getCoreValues(context: string): Promise<string | null>;
    /**
     * Gets project purpose statement
     */
    getProjectPurpose(context: string): Promise<string | null>; /**
     * Gets mission, vision and core values
     */
    getMissionVisionAndCoreValues(context: string): Promise<string | null>;
    /**
     * Gets schedule network diagram
     */
    getScheduleNetworkDiagram(context: string): Promise<string | null>;
    /**
     * Gets milestone list
     */
    getMilestoneList(context: string): Promise<string | null>;
    /**
     * Gets schedule development input
     */
    getDevelopScheduleInput(context: string): Promise<string | null>;
    /**
     * Gets project statement of work
     */
    getProjectStatementOfWork(context: string): Promise<string | null>;
    /**
     * Gets business case
     */
    getBusinessCase(context: string): Promise<string | null>;
}
//# sourceMappingURL=ProjectManagementProcessor.d.ts.map