import { type SharedValue } from "react-native-reanimated"; import type { ResolvedCandleGapsConfig } from "../core/resolveConfig"; import type { SingleEngineState } from "../core/useLiveChartEngine"; import type { ChartPadding } from "../draw/line"; import type { CandleMetrics, CandlePoint } from "../types"; /** Batched neutral previous-close paths for each semantic candle-gap kind. */ export declare function useCandleGapPaths(engine: SingleEngineState, padding: ChartPadding, candles: SharedValue, liveCandle: SharedValue, displayCandleWidth: SharedValue, config: ResolvedCandleGapsConfig, metrics: CandleMetrics): { readonly noTradesPath: import("react-native-reanimated").DerivedValue; readonly unavailablePath: import("react-native-reanimated").DerivedValue; readonly unknownPath: import("react-native-reanimated").DerivedValue; }; //# sourceMappingURL=useCandleGapPaths.d.ts.map