import { TextProps } from '@vx/text/lib/Text'; import Orientation from '../constants/orientation'; import { AxisScaleOutput } from '../types'; export interface TransformArgs { labelOffset: number; labelProps: Partial; orientation: Orientation; 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