import React from 'react'; import { TinyArea as G2plotTinyArea, TinyAreaOptions as G2plotProps } from '@antv/g2plot'; import { ContainerProps } from '../common/hooks/use-chart'; export interface TinyAreaConfig extends G2plotProps, ContainerProps { chartRef?: React.MutableRefObject; } declare const TinyAreaChart: React.ForwardRefExoticComponent>; export default TinyAreaChart;