export declare class ChartConditionService {
    constructor();
    chartCondition(): ({
        type: string;
        charttype: string;
        condition: {
            lineStyle: boolean;
            x: boolean;
            y: boolean;
            yTitle: boolean;
            dataShow: boolean;
            dataLabe: boolean;
            legend: boolean;
            radius: boolean;
        };
    } | {
        type: string;
        condition: {
            lineStyle: boolean;
            x: boolean;
            y: boolean;
            yTitle: boolean;
            dataShow: boolean;
            dataLabe: boolean;
            legend: boolean;
            radius: boolean;
        };
        charttype?: undefined;
    })[];
}
