import { type SkFont } from "@shopify/react-native-skia"; import type { ChartEngineLayout } from "../core/useLiveChartEngine"; import type { ChartPadding } from "../draw/line"; import type { LiveChartPalette, ReferenceLine } from "../types"; /** * Draws Form-B `ReferenceLine.series` geometry. The base pass is a clipped Skia * polyline behind the chart; the badge pass is the live-edge label above the * chart fade, matching the existing two-pass reference-line layering. */ export declare function ReferenceLineSeriesOverlay({ engine, padding, line, palette, formatValue, font, badgeLayer, }: { engine: ChartEngineLayout; padding: ChartPadding; line: ReferenceLine; palette: LiveChartPalette; formatValue: (value: number) => string; font: SkFont; badgeLayer: boolean; }): import("react").JSX.Element; //# sourceMappingURL=ReferenceLineSeriesOverlay.d.ts.map