/** * File Utilities Module for Requirements Gathering Agent * * Provides comprehensive file management and document generation utilities * for creating structured project documentation and PMBOK-compliant outputs. * * @version 2.1.3 * @author Requirements Gathering Agent Team * @created 2024 * @updated June 2025 * * Key Features: * - Markdown file generation with automatic extension handling * - Batch file operations with directory structure creation * - Structured project documentation organization * - PMBOK document categorization and placement * - Error handling and logging for file operations * * @filepath c:\Users\menno\Source\Repos\requirements-gathering-agent\src\modules\fileUtils.ts */ /** * Generate a markdown file with the specified content */ export declare function generateMarkdownFile(filename: string, content: string): Promise; /** * Generate multiple markdown files in a specified directory */ export declare function generateMarkdownFiles(directory: string, files: Array<{ name: string; content: string; }>): Promise; /** * Generate a structured project documentation folder */ export declare function generateProjectDocumentation(projectName: string, documents: Record): Promise; export declare const fileUtilsVersion = "2.1.3"; //# sourceMappingURL=fileUtils.d.ts.map