import { type AnimationResult, type StandardAnimationOption } from '../../../animation'; import { Selection } from '../../../util'; import type { RequiredAxisStyleProps, RequiredLinearAxisStyleProps } from '../types'; export declare const getLinearValuePos: { (...args: any[]): any; cache: Map; }; export declare const getArcValuePos: { (...args: any[]): any; cache: Map; }; export declare function getValuePos(value: number, attr: RequiredAxisStyleProps): any; export declare function isAxisHorizontal(attr: RequiredLinearAxisStyleProps): boolean; export declare function isAxisVertical(attr: RequiredLinearAxisStyleProps): boolean; export declare function renderAxisLine(container: Selection, attr: RequiredAxisStyleProps, animate: StandardAnimationOption): AnimationResult[];