/**
 * 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<string|null>} Work Breakdown Structure or null if generation fails
     */
    getWorkBreakdownStructure(context: string): Promise<string | null>;
    /**
     * Generates a WBS Dictionary following PMBOK standards
     *
     * @param {string} context - Project context information
     * @returns {Promise<string|null>} WBS Dictionary or null if generation fails
     */
    getWBSDictionary(context: string): Promise<string | null>;
    /**
     * Generates a Scope Baseline document following PMBOK standards
     *
     * @param {string} context - Project context information
     * @returns {Promise<string|null>} Scope Baseline or null if generation fails
     */
    getScopeBaseline(context: string): Promise<string | null>;
    /**
     * Generates a Create WBS Process document following PMBOK standards
     *
     * @param {string} context - Project context information
     * @returns {Promise<string|null>} Create WBS Process or null if generation fails
     */
    getCreateWbsProcess(context: string): Promise<string | null>;
}
//# sourceMappingURL=WBSProcessor.d.ts.map