import type { Dispatch, SetStateAction } from 'react'; import type { ScaleBand, ScaleLinear } from 'd3-scale'; interface XAxisProps { allowLineWrap: boolean; labels: string[]; labelWidth: number; onHeightChange: Dispatch>; x: number; xScale: ScaleLinear | ScaleBand; y: number; ariaHidden?: boolean; isLinearChart?: boolean; reducedLabelIndexes?: number[]; } export declare function XAxis({ allowLineWrap, ariaHidden, isLinearChart, labels, labelWidth, onHeightChange, reducedLabelIndexes, x, xScale, y, }: XAxisProps): JSX.Element; export {}; //# sourceMappingURL=XAxis.d.ts.map