import { DSLQuery } from '@lingxiteam/dsl'; interface PropsChangeType { changeField: { name: string; value: any; }; DSLCore?: DSLQuery; isMobile?: Boolean; } declare const handleDataSource: ({ DSLCore, changeField, isMobile }: PropsChangeType) => void; /** * 处理折线/柱状图横轴内容更改属性联动 * 双X轴:四条线,横轴内容/顶部横轴(各两条)内容改变均对应纵轴 * 双Y轴:两条线,横轴内容改变,一条对应纵轴,一条对应右侧纵轴 * 双X双Y轴:四条线,横轴内容改变对应纵轴(两条),顶部横轴内容改变对应右侧纵轴(两条) */ declare const handleXAxisData: ({ DSLCore, changeField }: PropsChangeType) => void; /** * 图表类型表更 */ declare const handleChartType: ({ DSLCore, changeField }: PropsChangeType) => void; export { handleDataSource, handleXAxisData, handleChartType, };