import { type SkFont } from "@shopify/react-native-skia"; import { type SharedValue } from "react-native-reanimated"; import type { ChartEngineWithLiveValue } from "../core/useLiveChartEngine"; import type { ChartPadding } from "../draw/line"; import type { LiveChartPalette, Momentum } from "../types"; /** * Large live-value text rendered in the top-left of the plot. Tracks the * engine's smoothed display value on the UI thread; optionally tinted by * momentum (green up / red down / accent flat). */ export declare function ValueTextOverlay({ engine, padding, palette, font, formatValue, momentum, momentumColor, }: { engine: ChartEngineWithLiveValue; padding: ChartPadding; palette: LiveChartPalette; font: SkFont; formatValue: (v: number) => string; momentum?: SharedValue; momentumColor: boolean; }): import("react").JSX.Element; //# sourceMappingURL=ValueTextOverlay.d.ts.map