import type { ILinearAxisSpec } from '@visactor/vchart/esm/component/axis'; import type { ISpec } from '@visactor/vchart'; import type { SeriesBreakData } from './type'; export declare function getSeriesBreakConfig(axesSpec: ILinearAxisSpec[], axesIndex?: number[]): { type: string; componentType: string; interactive: boolean; zIndex: number; style: { data: (datum: any, ctx: any) => SeriesBreakData[]; }; }; export declare const appendSeriesBreakConfig: (rawSpec: ISpec) => boolean;