/** * MCP tool for retrieving per-action token analytics */ import type { AnalyticsManager } from '../../analytics/analytics-manager.js'; export declare const GET_ACTION_ANALYTICS_TOOL_DEFINITION: { readonly name: "get_action_analytics"; readonly description: "Get detailed token usage analytics broken down by tool/action (Read, Write, Grep, Bash, count_tokens, etc.). Shows which tools consume the most tokens and identifies optimization opportunities for specific operations."; readonly inputSchema: { readonly type: "object"; readonly properties: { readonly startDate: { readonly type: "string"; readonly description: "Optional start date filter in ISO 8601 format (e.g., 2025-01-01T00:00:00Z)"; }; readonly endDate: { readonly type: "string"; readonly description: "Optional end date filter in ISO 8601 format (e.g., 2025-12-31T23:59:59Z)"; }; }; }; }; export declare function getActionAnalyticsTool(analyticsManager: AnalyticsManager): (args: { startDate?: string; endDate?: string; }) => Promise; //# sourceMappingURL=get-action-analytics.d.ts.map