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 declarefunctioncreateErrorResponse(message: string): ServerResult;