import { FC } from 'react'; import { SplineCurve } from 'three'; import { PerfUIProps } from '../types'; export interface graphData { curve: SplineCurve; maxVal: number; element: string; } export declare const ChartUI: FC;