type Props = { /** * The start point of the axis */ min: number; /** * The end point of the axis */ max: number; /** * Interval size between each tick */ interval: number; /** * The top offset to vertically shift the axis */ yPos: number; /** * Label to appear under the axis */ label: string; }; declare const XAxis: ({ min, max, interval, yPos, label }: Props) => import("react/jsx-runtime").JSX.Element; export default XAxis; //# sourceMappingURL=histogram-x-axis.d.ts.map