import React from 'react'; import type { ReactNode } from 'react'; interface ChartProps { title?: ReactNode; description?: ReactNode; spec?: any; mockConfig?: any; chartRef: React.MutableRefObject; } export declare const Chart: ({ title, description, spec, chartRef, mockConfig }: ChartProps) => JSX.Element; export {};