import type { SharedAxisProps, AxisScale } from '../types'; import type { OrientationType } from '../constants/orientation'; export type AxisProps = SharedAxisProps & { orientation?: OrientationType; }; export default function Axis({ children, axisClassName, hideAxisLine, hideTicks, hideZero, innerRef, left, numTicks, orientation, rangePadding, scale, tickFormat, tickLength, tickValues, top, ...restProps }: AxisProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=Axis.d.ts.map