import type { TextProps } from '@visx/text'; import type { OrientationType } from '../constants/orientation'; import type { AxisScaleOutput } from '../types'; export interface TransformArgs { labelOffset: number; labelProps: Partial; orientation: OrientationType; range: AxisScaleOutput[]; tickLabelFontSize: number; tickLength: number; } export default function getLabelTransform({ labelOffset, labelProps, orientation, range, tickLabelFontSize, tickLength, }: TransformArgs): { x: number; y: number; transform: string | undefined; }; //# sourceMappingURL=getLabelTransform.d.ts.map