/**
 * MCP Tool for research integration and findings incorporation
 * Implements prompt-driven research analysis and ADR impact evaluation
 */
/**
 * Incorporate research findings into architectural decisions
 */
export declare function incorporateResearch(args: {
    researchPath?: string;
    adrDirectory?: string;
    analysisType?: 'monitor' | 'extract_topics' | 'evaluate_impact' | 'generate_updates' | 'comprehensive';
    existingTopics?: string[];
    researchTopics?: Array<{
        id: string;
        title: string;
        category: string;
        keyFindings: string[];
        relevanceScore: number;
    }>;
    adrId?: string;
    updateType?: 'content' | 'status' | 'consequences' | 'alternatives' | 'deprecation';
    researchFindings?: Array<{
        finding: string;
        evidence: string[];
        impact: string;
    }>;
}): Promise<any>;
/**
 * Create research template file
 */
export declare function createResearchTemplate(args: {
    title: string;
    category?: string;
    researchPath?: string;
}): Promise<any>;
/**
 * Request action confirmation for research-based changes
 */
export declare function requestActionConfirmation(args: {
    action: string;
    details: string;
    impact?: 'low' | 'medium' | 'high' | 'critical';
}): Promise<any>;
//# sourceMappingURL=research-integration-tool.d.ts.map