import { type ReactElement } from "react";
interface StackTraceProps {
    caption: string;
    trace: string;
    onCopy(): void;
}
export declare const StackTrace: ({ caption, trace, onCopy }: StackTraceProps) => ReactElement;
export {};
