import React from 'react'; import type { StylingFunction } from 'react-base16-styling'; interface Props { styling: StylingFunction; arrowStyle?: 'single' | 'double'; expanded: boolean; nodeType: string; onClick: React.MouseEventHandler; } export default function JSONArrow({ styling, arrowStyle, expanded, nodeType, onClick, }: Props): React.JSX.Element; export {};