export declare const Y_FIELD = "$$yField$$"; export declare const DIFF_FIELD = "$$diffField$$"; export declare const ABSOLUTE_FIELD = "$$absoluteField$$"; export declare const IS_TOTAL = "$$isTotal$$"; /** * 瀑布图 默认配置项 */ export declare const DEFAULT_OPTIONS: { /** default: show label */ label: {}; /** default: show leaderLine */ leaderLine: { style: { lineWidth: number; stroke: string; lineDash: number[]; }; }; /** default: show total */ total: { style: { fill: string; }; }; interactions: { type: string; }[]; risingFill: string; fallingFill: string; waterfallStyle: { fill: string; }; yAxis: { grid: { line: { style: { lineDash: number[]; }; }; }; }; };