import * as React from 'react';
import type { MappedSpanAndAnnotation } from '../types';
interface SpanDetailsProps {
    span: MappedSpanAndAnnotation | null;
    onClose: () => void;
}
declare const SpanDetails: React.FC<SpanDetailsProps>;
export default SpanDetails;
