import { Series } from '../../../../Series'; import { Scale } from '../../../../../scales'; import { PlotArea } from '../../../../../types'; import { SVGDocumentBuilder } from '../SVGDocumentBuilder'; export declare function buildStepPoints(data: { x: Float32Array | Float64Array; y: Float32Array | Float64Array; }, xScale: Scale, yScale: Scale, stepMode: string): string[]; export declare function exportLineSeries(series: Series, plotArea: PlotArea, xScale: Scale, yScale: Scale, builder: SVGDocumentBuilder): void; export declare function exportScatterPoints(series: Series, _plotArea: PlotArea, xScale: Scale, yScale: Scale, builder: SVGDocumentBuilder, skipLine?: boolean): void; export declare function exportScatterSeries(series: Series, plotArea: PlotArea, xScale: Scale, yScale: Scale, builder: SVGDocumentBuilder): void;