/** * LLMCallInspector Component * * Displays detailed information about a single LLM API call log row. * Framework-agnostic: accepts a fetch_detail prop instead of accessing * the database directly. */ import type { FetchDetailFn } from '../../lib/observability/types.js'; export interface LLMCallInspectorProps { /** ID of the call to inspect. null = show placeholder. */ call_id: string | null; /** Async function to fetch call detail */ fetch_detail: FetchDetailFn; /** Optional CSS class */ className?: string; } export declare function LLMCallInspector({ call_id, fetch_detail, className }: LLMCallInspectorProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=llm_call_inspector.d.ts.map