import { ErrorResponse } from './response.js'; export declare function handleToolError(error: any, operationName: string, additionalDetails?: string): ErrorResponse; export declare function executeWithErrorHandling(operation: () => Promise, operationName: string, additionalDetails?: string): Promise; export declare function getOperationDetails(operationType: 'retrieve' | 'create' | 'update' | 'delete'): string;