import { BaseToolServer } from '../base/BaseToolServer.js'; import { StructuredArgumentationData } from '../schemas/index.js'; /** * Structured Argumentation Server using clear-thought tools approach * Extends BaseToolServer for standardized validation and error handling */ export declare class StructuredArgumentationServer extends BaseToolServer { constructor(); protected handle(validInput: StructuredArgumentationData): any; /** * Standardized process method for structured argumentation * @param validInput - Validated structured argumentation data * @returns Processed structured argumentation result */ process(validInput: StructuredArgumentationData): any; private formatArgumentationOutput; }