/**
 * Analytics Tools Module
 *
 * This module provides analytics query tools for the Digital Samba MCP Server.
 * These tools allow for complex analytics queries with filters and parameters.
 *
 * @module tools/analytics-tools
 */
import { Tool } from "@modelcontextprotocol/sdk/types.js";
import { DigitalSambaApiClient } from "../../digital-samba-api.js";
/**
 * Register all analytics tools
 *
 * @returns Array of MCP Tool definitions
 */
export declare function registerAnalyticsTools(): Tool[];
/**
 * Handle analytics tool execution
 *
 * @param toolName - The name of the tool being executed
 * @param args - The tool arguments
 * @param apiClient - The Digital Samba API client instance
 * @returns The tool execution result
 */
export declare function executeAnalyticsTool(toolName: string, args: any, apiClient: DigitalSambaApiClient): Promise<any>;
//# sourceMappingURL=index.d.ts.map