export declare function getDonutConfiguration(): { chart: { type: string; events: { load(): void; }; }; plotOptions: { pie: { size: string; allowPointSelect: boolean; dataLabels: { enabled: boolean; }; showInLegend: boolean; }; }; legend: { enabled: boolean; }; } & { chart: { events: { load(): void; }; }; plotOptions: { pie: { innerSize: string; }; }; };