import React from "react"; import type { ValueOf, NumericalFields, InputDatum, AxisProps, InputFields } from "../../types"; /** * @deprecated This component will eventually be replaced by the new, separate x/y/frame components. */ export declare const CartesianAxis: , XK extends keyof InputFields, YK extends keyof NumericalFields>({ tickCount, xTicksNormalized, yTicksNormalized, labelPosition, labelOffset, axisSide, lineColor, lineWidth, labelColor, formatYLabel, formatXLabel, yScale, xScale, font, isNumericalData, ix, }: AxisProps) => React.JSX.Element; export declare const CartesianAxisDefaultProps: { lineColor: string; lineWidth: number; tickCount: number; labelOffset: { x: number; y: number; }; axisSide: { x: "bottom"; y: "left"; }; axisScales: { xAxisScale: "linear"; yAxisScale: "linear"; }; labelPosition: "outset"; formatXLabel: (label: ValueOf) => string; formatYLabel: (label: ValueOf) => string; labelColor: string; ix: never[]; domain: null; };