import { type SkFont } from "@shopify/react-native-skia"; import type { ChartEngineLayout } from "../core/useLiveChartEngine"; import type { ResolvedSegment } from "../core/resolveSegment"; import type { ChartPadding } from "../draw/line"; /** * Renders one segment's edge markers: an optional dashed vertical divider at its * leading (`from`) edge and an optional label captioning that divider (so the * label shows only when the divider does). The scrub-focus emphasis is carried by * the line stroke itself (see `useSegmentLineGradient`), so this overlay draws no * fill. Self-contained so callers can `.map()` over a variable-length `segments` * array, mirroring `ReferenceLineOverlay`. */ export declare function SegmentDividerOverlay({ engine, padding, segment, font, }: { engine: ChartEngineLayout; padding: ChartPadding; segment: ResolvedSegment; font: SkFont; }): import("react").JSX.Element; //# sourceMappingURL=SegmentDividerOverlay.d.ts.map