import type { DocumentProcessor, DocumentOutput } from '../../documentGenerator/types.js';
import type { ProjectContext } from '../../ai/types';
/**
 * Processor for the BABOK Perspectives document.
 * Uses AI to enhance the Perspectives content, with fallback to the template.
 */
export declare class PerspectivesProcessor implements DocumentProcessor {
    process(context: ProjectContext): Promise<DocumentOutput>;
    generate(context: ProjectContext): Promise<DocumentOutput>;
}
//# sourceMappingURL=PerspectivesProcessor.d.ts.map