/** * Work Breakdown Structure Processor * Handles AI functions related to Work Breakdown Structure (WBS) and related elements * * @class WBSProcessor * @description Specialized processor for generating WBS, WBS Dictionary, and other * scope decomposition artifacts following PMBOK standards * * @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 WBSProcessor extends BaseAIProcessor { /** * Generates a Work Breakdown Structure following PMBOK standards * * @param {string} context - Project context information * @returns {Promise} Work Breakdown Structure or null if generation fails */ getWorkBreakdownStructure(context: string): Promise; /** * Generates a WBS Dictionary following PMBOK standards * * @param {string} context - Project context information * @returns {Promise} WBS Dictionary or null if generation fails */ getWBSDictionary(context: string): Promise; /** * Generates a Scope Baseline document following PMBOK standards * * @param {string} context - Project context information * @returns {Promise} Scope Baseline or null if generation fails */ getScopeBaseline(context: string): Promise; /** * Generates a Create WBS Process document following PMBOK standards * * @param {string} context - Project context information * @returns {Promise} Create WBS Process or null if generation fails */ getCreateWbsProcess(context: string): Promise; } //# sourceMappingURL=WBSProcessor.d.ts.map