import { ServerResult } from './types.js';
/**
 * Creates a standard error response for tools
 * @param message The error message
 * @returns A ServerResult with the error message
 */
export declare function createErrorResponse(message: string): ServerResult;
