1 | import React from 'react';
|
2 | import type { StylingFunction } from 'react-base16-styling';
|
3 | interface Props {
|
4 | styling: StylingFunction;
|
5 | arrowStyle?: 'single' | 'double';
|
6 | expanded: boolean;
|
7 | nodeType: string;
|
8 | onClick: React.MouseEventHandler<HTMLDivElement>;
|
9 | }
|
10 | export default function JSONArrow({ styling, arrowStyle, expanded, nodeType, onClick, }: Props): React.JSX.Element;
|
11 | export {};
|