import { BaseToolServer } from '../base/BaseToolServer.js';
import { DecisionFrameworkData } from '../schemas/index.js';
/**
 * Decision Framework Server using clear-thought tools approach
 * Extends BaseToolServer for standardized validation and error handling
 */
export declare class DecisionFrameworkServer extends BaseToolServer<DecisionFrameworkData, any> {
    constructor();
    protected handle(validInput: DecisionFrameworkData): any;
    /**
     * Standardized process method for decision framework
     * @param validInput - Validated decision framework data
     * @returns Processed decision framework result
     */
    process(validInput: DecisionFrameworkData): any;
    private formatDecisionOutput;
}
