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