import React from 'react'; import { StylingFunction } from 'react-base16-styling'; interface Props { styling: StylingFunction; arrowStyle?: 'single' | 'double'; expanded: boolean; nodeType: string; onClick: React.MouseEventHandler; } declare const JSONArrow: React.FunctionComponent; export default JSONArrow;