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