/** * Planning Process Processor * Handles AI functions related to PMBOK planning processes and management plans * * @class PlanningProcessor * @description Specialized processor for generating PMBOK management plan documentation * including scope, schedule, cost, quality, resource, communication, risk, * procurement, and stakeholder management plans. * * @version 1.0.0 * @since 3.1.0 */ import { BaseAIProcessor } from "./BaseAIProcessor.js"; export declare class PlanningProcessor extends BaseAIProcessor { /** * Generates a Schedule Management Plan following PMBOK standards * * @param {string} context - Project context information * @returns {Promise} Schedule Management Plan or null if generation fails */ getScheduleManagementPlan(context: string): Promise; /** * Generates a Cost Management Plan following PMBOK standards * * @param {string} context - Project context information * @returns {Promise} Cost Management Plan or null if generation fails */ getCostManagementPlan(context: string): Promise; /** * Generates a Quality Management Plan following PMBOK standards * * @param {string} context - Project context information * @returns {Promise} Quality Management Plan or null if generation fails */ getQualityManagementPlan(context: string): Promise; /** * Generates a Resource Management Plan following PMBOK standards * * @param {string} context - Project context information * @returns {Promise} Resource Management Plan or null if generation fails */ getResourceManagementPlan(context: string): Promise; /** * Generates a Communication Management Plan following PMBOK standards * * @param {string} context - Project context information * @returns {Promise} Communication Management Plan or null if generation fails */ getCommunicationManagementPlan(context: string): Promise; /** * Generates a Risk Management Plan following PMBOK standards * * @param {string} context - Project context information * @returns {Promise} Risk Management Plan or null if generation fails */ getRiskManagementPlan(context: string): Promise; /** * Generates a Procurement Management Plan following PMBOK standards * * @param {string} context - Project context information * @returns {Promise} Procurement Management Plan or null if generation fails */ getProcurementManagementPlan(context: string): Promise; /** * Generates a Stakeholder Engagement Plan following PMBOK standards * * @param {string} context - Project context information * @returns {Promise} Stakeholder Engagement Plan or null if generation fails */ getStakeholderEngagementPlan(context: string): Promise; } //# sourceMappingURL=PlanningProcessor.d.ts.map