import React from "react"; import type { InputDatum, InputFields, ValueOf, XAxisProps } from "../../types"; export declare const XAxis: , XK extends keyof InputFields>({ xScale: xScaleProp, yScale, axisSide, yAxisSide, labelPosition, labelRotate, tickCount, tickValues, labelOffset, labelColor, lineWidth, lineColor, font, formatXLabel, ix, isNumericalData, linePathEffect, chartBounds, enableRescaling, zoom, }: XAxisProps) => React.JSX.Element[]; export declare const XAxisDefaults: { lineColor: string; lineWidth: number; tickCount: number; labelOffset: number; axisSide: "bottom"; yAxisSide: "left"; labelPosition: "outset"; formatXLabel: (label: ValueOf) => string; labelColor: string; labelRotate: number; };