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 function getTickPoints(unitVector: Vector2, tickLength: number): number[][]; export declare function renderTicks(container: Selection, axisData: AxisDatum[], attr: RequiredAxisStyleProps, animate: StandardAnimationOption): import("@antv/g").IAnimation[];