import type { Dispatch, SetStateAction } from 'react'; import type { ScaleLinear } from 'd3-scale'; interface HorizontalBarChartXAxisLabelsProps { allowLineWrap: boolean; chartX: number; chartY: number; labels: string[]; labelWidth: number; onHeightChange: Dispatch>; xScale: ScaleLinear; ticks: number[]; } export declare function HorizontalBarChartXAxisLabels({ allowLineWrap, chartX, chartY, labels, labelWidth, onHeightChange, ticks, xScale, }: HorizontalBarChartXAxisLabelsProps): JSX.Element; export {}; //# sourceMappingURL=HorizontalBarChartXAxisLabels.d.ts.map