/**
 * 构建二维的直角坐标系图表options，line 或 bar
 * @param data
 * @param settings
 * @param options
 * @param type
 * @param props
 */
export default function ({ data, settings }: any, type: any, props: any): {
    series: any;
    dataset: {
        id: any;
        dimensions: any;
        source: any[][];
        sourceHeader: any;
    };
    xAxis: {
        type: string;
    }[] | undefined;
    yAxis: {
        type: string;
    }[] | undefined;
    tooltip: {};
    legend: {};
};
