import { PropsTypes } from '@orca-fe/deye-typings'; import { XyChartProps } from '../xy-chart'; export interface PieChartProps extends Omit { name?: string; nameField?: string; valueField?: string; data?: Record[]; } declare const PieChart: { (props: PieChartProps): JSX.Element; title: string; icon: JSX.Element; propsDef: PropsTypes[]; style: boolean; defaultProps: { data: { value: number; name: string; }[]; style: { height: number; }; title: { show: boolean; text: string; }; }; customEditorInBorder: (props: import("../../components/CommonHeightEditorInBorder").CommonHeightEditorInBorderProps) => JSX.Element; }; export default PieChart;