/** * Analytics Internal MCP * * Provides visual analytics with ASCII charts for AI consumption. * Returns data wrapped in markdown code blocks for rendering. */ import { InternalMCP, InternalTool, InternalToolResult } from './types.js'; export declare class AnalyticsMCP implements InternalMCP { name: string; description: string; private parser; private tokenTracker; constructor(); tools: InternalTool[]; executeTool(toolName: string, args: any): Promise; /** * Format dashboard with visual charts in markdown code blocks */ private formatDashboard; /** * Format performance metrics with visual charts in markdown code blocks */ private formatPerformance; /** * Format usage statistics with properly spaced markdown tables */ private formatUsage; /** * Get peak usage hour */ private getPeakHour; /** * Format token metrics and savings report */ private formatTokenMetrics; } //# sourceMappingURL=analytics.d.ts.map