import React from 'react'; import { Rose as G2plotRose, RoseOptions as G2plotProps } from '@antv/g2plot'; import { ContainerProps } from '../common/hooks/use-chart'; export interface RoseConfig extends G2plotProps, ContainerProps { chartRef?: React.MutableRefObject; } declare const RoseChart: React.ForwardRefExoticComponent>; export default RoseChart;