import type { ForwardRefExoticComponent, PropsWithoutRef, RefAttributes } from 'react'; import type { PieOptions } from '../../core'; import type { Chart, CommonConfig } from '../../interface'; export type PieConfig = CommonConfig; declare const PieChart: ForwardRefExoticComponent & RefAttributes>; export default PieChart;