import { type SharedValue } from "react-native-reanimated"; import type { ChartPadding } from "../draw/line"; import type { ChartEngineLayout } from "../core/useLiveChartEngine"; /** * A dashed horizontal line that tracks the live display value — sitting at * the same Y as the badge and live dot. Rendered behind the chart line. */ export declare function ValueLineOverlay({ dotY, engine, padding, strokeWidth, intervals, color, }: { dotY: SharedValue; engine: ChartEngineLayout; padding: ChartPadding; strokeWidth: number; intervals: [number, number]; color: string; }): import("react").JSX.Element; //# sourceMappingURL=ValueLineOverlay.d.ts.map