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