import { SeriesType, PlotArea } from '../../../../../types'; import { Series } from '../../../../Series'; import { Scale } from '../../../../../scales'; import { SVGDocumentBuilder } from '../SVGDocumentBuilder'; import { SVGExportContext } from '../SVGExportContext'; export type SeriesSVGExporter = (series: Series, plotArea: PlotArea, xScale: Scale, yScale: Scale, builder: SVGDocumentBuilder, ctx?: SVGExportContext) => void; export declare function getSeriesSVGExporter(type: SeriesType): SeriesSVGExporter | undefined; export declare function exportAllSeries(ctx: SVGExportContext, builder: SVGDocumentBuilder): void; export declare function getRegisteredSeriesTypes(): SeriesType[];