/** * Data Inspector - Advanced JSON viewer with syntax highlighting, search, and diff */ import type { JSONValue } from "../types"; interface DataInspectorProps { data: JSONValue; label?: string; onCopy?: () => void; maxHeight?: number; } export declare function DataInspector({ data, label, onCopy, maxHeight, }: DataInspectorProps): import("react/jsx-runtime").JSX.Element; export {};