/** * NeuroLink Analytics System * * Provides lightweight analytics tracking for AI provider usage, * including tokens, costs, performance metrics, and custom context. */ import type { AnalyticsData } from "../types/index.js"; /** * Create analytics data structure from AI response */ export declare function createAnalytics(provider: string, model: string, result: unknown, responseTime: number, context?: Record): AnalyticsData;