import { ChartPlugin } from '../../../../../plugins/types'; import { SVGExportPluginContext } from './types'; /** Collect plugin overlay data from chart plugin manager during export. */ export declare function collectPluginSVGData(pluginManager: { get: (name: string) => ChartPlugin | undefined; notifyExportSVG?: (ctx: SVGExportPluginContext) => void; }, ctx: SVGExportPluginContext): void;