import type { ProficiencyChartProps } from '../components/ProficiencyChart/interfaces';
export type { ProficiencyCounters, ProficiencyChartProps } from '../components/ProficiencyChart/interfaces';
/**
 * ProficiencyChart - displays a pie chart showing the distribution of student proficiency levels.
 *
 * @example
 * ```tsx
 * <ProficiencyChart
 *   counters={{
 *     highlight: 10,
 *     aboveAverage: 25,
 *     belowAverage: 15,
 *     attentionPoint: 5,
 *   }}
 *   totalStudents={55}
 * />
 * ```
 */
export declare const ProficiencyChart: ({ counters, totalStudents, className, ...props }: Readonly<ProficiencyChartProps>) => import("react/jsx-runtime").JSX.Element;
export default ProficiencyChart;
//# sourceMappingURL=ProficiencyChart.d.ts.map