/**
 * Tool Compatibility Bridge - Connects v2 stateless architecture with original handler system
 *
 * This bridge ensures all 388 original tools work in the new v2 architecture
 * while maintaining the stateless benefits and crash prevention.
 */
export declare class ToolCompatibilityBridge {
    private handlerRegistry;
    private initialized;
    constructor();
    initialize(): Promise<void>;
    getAllAvailableTools(): Promise<Array<{
        name: string;
        description: string;
        inputSchema?: any;
    }>>;
    executeStatelessTool(request: any): Promise<any>;
    private performCleanup;
    getToolCapabilities(): Promise<{
        totalTools: number;
        categories: string[];
    }>;
}
//# sourceMappingURL=tool-compatibility-bridge.d.ts.map