import React from 'react';
import { CnChartProps } from './types';
import './index.scss';
import { Chart } from '@antv/g2';
declare class ChartProps extends Chart {
}
/**
 * CnPieChart 组件
 * @param {*} props
 * @returns
 */
declare const CnChart: React.ForwardRefExoticComponent<Pick<CnChartProps, keyof CnChartProps> & React.RefAttributes<unknown>>;
export { CnChart, ChartProps };
