import { type SkFont } from "@shopify/react-native-skia"; import { type SharedValue } from "react-native-reanimated"; import type { ChartEngineLayout } from "../core/useLiveChartEngine"; import type { ChartPadding } from "../draw/line"; import type { XAxisEntry } from "../hooks/useXAxis"; import type { LiveChartPalette } from "../types"; export declare function XAxisOverlay({ entries, engine, padding, palette, font, volumeBandHeight, }: { entries: SharedValue; engine: ChartEngineLayout; padding: ChartPadding; palette: LiveChartPalette; font: SkFont; /** * Reserved volume-band height (px) folded into `padding.bottom`. The axis line * + labels shift back down by this so they stay at the very bottom, below the * band, while the price plot above shrinks. `0` = no band (default). */ volumeBandHeight?: number; }): import("react").JSX.Element; //# sourceMappingURL=XAxisOverlay.d.ts.map