import type { UdfTrace } from "../types"; interface TraceViewerProps { trace: UdfTrace; maxHeight?: number; } export declare function TraceViewer({ trace, maxHeight }: TraceViewerProps): import("react/jsx-runtime").JSX.Element; export {};