import React from 'react'; import { Theme } from '@plurid/plurid-themes'; export interface RecordsPieChartDataItem { name: string; value: number; } export interface RecordsPieChartProperties { generalTheme: Theme; interactionTheme: Theme; data: RecordsPieChartDataItem[]; type: string; project: string; period: string; projects: string[]; updateData: (project: string, period: string) => void; updateProjects: () => void; } declare const RecordsPieChart: React.FC; export default RecordsPieChart;