import type { ChartAnimationOptions } from './types.js';
export declare function reconcileChartSvg(container: HTMLElement, markup: string, animation?: ChartAnimationOptions): () => void;
/** Reconciles one keyed SVG subtree without reparsing or walking the chart. */
export declare function reconcileChartSvgFragment(currentRoot: SVGElement, markup: string, animation?: ChartAnimationOptions): () => void;
