import * as React from 'react'; import { ScaleValue, AnyScale } from '@dfnivo/scales'; import { AxisProps } from '../types'; declare const memoizedAxis: ({ axis, scale, x, y, length, ticksPosition, tickValues, tickSize, tickPadding, tickRotation, format, renderTick, legend, legendPosition, legendOffset, onClick, ariaHidden, position, }: AxisProps & { position: 'top' | 'right' | 'bottom' | 'left'; axis: 'x' | 'y'; scale: AnyScale; x?: number | undefined; y?: number | undefined; length: number; onClick?: ((event: React.MouseEvent, value: string | Value) => void) | undefined; }) => JSX.Element; export { memoizedAxis as Axis }; //# sourceMappingURL=Axis.d.ts.map