import { Span, TraceContext } from '../../../types'; export default function SpanTree({ className, traceContext, tree, startTimestamp, totalDuration, depth, totalTransactions, spanNodeWidth, setSpanNodeWidth, }: { className?: string; traceContext: TraceContext; tree: Span[]; startTimestamp: number; totalDuration: number; depth?: number; totalTransactions?: number; spanNodeWidth: number; setSpanNodeWidth?: (val: number) => void; }): import("react/jsx-runtime").JSX.Element | null;