import React from 'react'; import { Scatter as G2plotScatter, ScatterOptions as G2plotProps } from '@antv/g2plot'; import { ContainerProps } from '../common/hooks/use-chart'; export interface ScatterConfig extends G2plotProps, ContainerProps { chartRef?: React.MutableRefObject; } declare const ScatterChart: React.ForwardRefExoticComponent>; export default ScatterChart;