import { Core } from 'cytoscape'; import { Struct } from '../../configs/types/Struct'; import './style.scss'; type Props = { struct?: Struct; expression?: string; selector?: string; translations?: Record; wheelSensitivity?: number; renderWithInfo?: boolean; placeholder?: string; cyRef?: React.MutableRefObject; onClickExpression?: () => void; onExpand?: () => void; onReadyCustom?: (thisCy: Core) => void; }; export default function TreeView({ struct, expression, selector, translations, wheelSensitivity, renderWithInfo, placeholder, cyRef, onClickExpression, onExpand, onReadyCustom, }: Props): import("react").JSX.Element; export {};