/**
 * Document Generator with PMBOK Validation Module for Requirements Gathering Agent
 *
 * Integration module that combines document generation with comprehensive PMBOK validation
 * to ensure compliance with PMI standards and cross-document consistency.
 *
 * @version 2.1.3
 * @author Requirements Gathering Agent Team
 * @created 2024
 * @updated June 2025
 *
 * Key Features:
 * - Integrated document generation and PMBOK validation workflow
 * - Comprehensive validation against PMI standards
 * - Quality assessment scoring and reporting
 * - Cross-document consistency checking
 * - Professional compliance validation
 *
 * @filepath c:\Users\menno\Source\Repos\requirements-gathering-agent\src\modules\documentGeneratorWithValidation.ts
 */
import { GenerationResult, GenerationOptions } from './documentGenerator/index.js';
import { ComprehensiveValidationResult } from './pmbokValidation/index.js';
/**
 * Generate documents and validate against PMBOK standards
 * @param context Project context
 * @param options Generation options
 * @returns Combined generation and validation results
 */
export declare function generateAllWithPMBOKValidation(context: string, options?: GenerationOptions): Promise<{
    result: GenerationResult;
    validation: ComprehensiveValidationResult;
}>;
/**
 * Version information for the integrated module
 */
export declare const integratedVersion = "2.2.0";
//# sourceMappingURL=documentGeneratorWithValidation.d.ts.map