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