import { type ScaleLinear } from 'd3'; type Props = { /** * D3 scale function */ scale: ScaleLinear; /** * The height of axis component */ height: number; /** * Label to appear to the left of the axis */ label: string; }; declare const YAxis: ({ scale, height, label }: Props) => import("react/jsx-runtime").JSX.Element; export default YAxis; //# sourceMappingURL=histogram-y-axis.d.ts.map