import React from "react"; import { Pie as AntPie } from "@ant-design/plots"; declare type AntPieProps = typeof AntPie; export interface PieProps extends React.ComponentProps { } declare const Pie: (props: PieProps) => JSX.Element; export default Pie;