export declare function getFunnelConfiguration(): {
    chart: {
        type: string;
        spacingRight: number;
    };
    plotOptions: {
        funnel: {
            dataLabels: {
                enabled: boolean;
                crop: boolean;
                overflow: string;
                padding: number;
            };
        };
    };
    legend: {
        enabled: boolean;
    };
};
