interface DataOutput { dataType: "text" | "json"; content: string; parsed?: Record; } interface OutputInspectorProps { isOpen: boolean; onClose: () => void; nodeId: string; nodeLabel: string; output: DataOutput; } export declare function OutputInspector({ isOpen, onClose, nodeLabel, output }: OutputInspectorProps): import("react/jsx-runtime").JSX.Element | null; export {};