import type { ProjectContext } from '../../ai/types.js'; /** * Template for Scope Baseline document * Project scope baseline following PMBOK guidelines */ export declare class ScopebaselineTemplate { private context; constructor(context?: ProjectContext); getSections(): string[]; getMetadata(): { title: string; description: string; version: string; category: string; }; generatePrompt(context: ProjectContext): string; generateContent(): string; } //# sourceMappingURL=ScopebaselineTemplate.d.ts.map