import { type StandardAnimationOption } from '../../../animation'; import type { Vector2 } from '../../../types'; import { Selection } from '../../../util'; import type { AxisDatum, RequiredAxisStyleProps } from '../types'; export declare function getTickVector(value: number, attr: RequiredAxisStyleProps): Vector2; export declare const getTickPoints: { (...args: any[]): any; cache: Map; }; export declare function renderTicks(container: Selection, axisData: AxisDatum[], attr: RequiredAxisStyleProps, animate: StandardAnimationOption): import("../../../animation").AnimationResult[];