/** * LLMCostDashboard Component * * Displays aggregated LLM usage and cost data. * Framework-agnostic: accepts a fetch_summary prop instead of accessing * the database directly. */ import type { FetchSummaryFn } from '../../lib/observability/types.js'; export interface LLMCostDashboardProps { /** Async function to fetch usage summary data */ fetch_summary: FetchSummaryFn; /** Optional CSS class */ className?: string; } export declare function LLMCostDashboard({ fetch_summary, className }: LLMCostDashboardProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=llm_cost_dashboard.d.ts.map