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