import type { ProjectContext } from '../../ai/types.js'; /** * Template for Create WBS Process document * Work Breakdown Structure creation process following PMBOK guidelines */ export declare class CreatewbsTemplate { private context; constructor(context?: ProjectContext); getSections(): string[]; getMetadata(): { title: string; description: string; version: string; category: string; }; generatePrompt(context: ProjectContext): string; generateContent(): string; } //# sourceMappingURL=CreatewbsTemplate.d.ts.map