import React from "react"; import type { I18nContextType } from "../../../components/i18n-context"; export default function AxisLabels({ i18n, xAxisLabelLocation, yAxisLabelLocation, }: { i18n: I18nContextType; xAxisLabelLocation: [number, number]; yAxisLabelLocation: [number, number]; }): React.JSX.Element;