import React from 'react'; import { TinyLine as G2plotTinyLine, TinyLineOptions as G2plotProps } from '@antv/g2plot'; import { ContainerProps } from '../common/hooks/use-chart'; export interface TinyLineConfig extends G2plotProps, ContainerProps { chartRef?: React.MutableRefObject; } declare const TinyLineChart: React.ForwardRefExoticComponent>; export default TinyLineChart;