import React from "react"; interface HalfDoughnutChartProps { data: { value: number; color: string; }[]; centerText?: string; largerText?: string; largeTextDown?: boolean; darkmode?: boolean; } export declare const PieChart: React.FC; export {};