import React from 'react'; import { ProfileMetadata } from '../renderer/index.js'; export interface StackDetailsProps { selectedFrame: any | null; stackTrace?: any[]; children?: any[]; backgroundColor?: string; textColor?: string; primaryColor?: string; secondaryColor?: string; fontFamily?: string; width?: number | string; height?: number | string; allFrames?: any[]; profileMetadata?: ProfileMetadata; onFrameClick?: (frame: any) => void; } export declare const StackDetails: React.FC; //# sourceMappingURL=StackDetails.d.ts.map