import React from 'react'; import { Table } from '@uwdata/flechette'; import 'react-contexify/dist/ReactContexify.css'; import { ProfileSource } from '../../ProfileSource'; export declare const RowHeight = 26; export interface colorByColors { [key: string]: string; } export interface FlameNodeProps { height: number; totalWidth: number; table: Table; row: number; colors: colorByColors; colorBy: string; darkMode: boolean; compareMode: boolean; onContextMenu: (e: React.MouseEvent, row: number) => void; colorForSimilarNodes: string; selectedRow: number; onClick: () => void; isFlameChart: boolean; profileSource: ProfileSource; isRenderedAsFlamegraph?: boolean; isInSandwichView?: boolean; maxDepth?: number; effectiveDepth?: number; tooltipId?: string; hoveringRow?: number; setHoveringRow: (row: number | undefined) => void; } export declare const flameRectStyles: { cursor: string; transition: string; }; export declare const fadedFlameRectStyles: { cursor: string; transition: string; opacity: string; }; export declare const FlameNode: React.NamedExoticComponent; //# sourceMappingURL=FlameGraphNodes.d.ts.map