import { FC } from 'react'; export interface GraphProps { type: any; data: any; orientation?: any; maxDataPoints?: any; entities?: any; count?: number; } declare const Graph: FC; export default Graph;