import type { ScaleInput } from '@visx/scale'; import type { AxisScale, AxisScaleOutput } from '../types'; /** * Create a function that returns a tick position for the given tick value */ export default function getTickPosition(scale: Scale, align?: 'start' | 'center' | 'end'): (d: ScaleInput) => AxisScaleOutput; //# sourceMappingURL=getTickPosition.d.ts.map