import { McpToolResponse } from "../../../types/mcp.js";
import { UnifiedSearchResponse } from "./types.js";
/**
 * Create a formatted, human-readable response for the atlas_unified_search tool
 *
 * @param data The search response data
 * @param isError Whether this response represents an error condition
 * @returns Formatted MCP tool response with appropriate structure
 */
export declare function formatUnifiedSearchResponse(data: UnifiedSearchResponse, isError?: boolean): McpToolResponse;
