import type { ChartsXAxisProps } from "../models/axis.js"; import type { OrdinalTimeTicks } from "../models/timeTicks.js"; interface ChartsSingleXAxisProps extends ChartsXAxisProps { axisLabelHeight: number; ordinalTimeTicks?: OrdinalTimeTicks; } /** * @ignore - internal component. */ declare function ChartsSingleXAxisTicks(inProps: ChartsSingleXAxisProps): import("react/jsx-runtime").JSX.Element; export { ChartsSingleXAxisTicks };