import type { ChartsRadiusAxisProps, ChartsRotationAxisProps, ComputedAxis, ScaleName } from "../../../../models/axis.mjs"; /** * For a pointer coordinate, this function returns the value and dataIndex associated. * Returns `-1` if the coordinate does not match a value. */ export declare function getRotationAxisIndex(axisConfig: ComputedAxis, pointerValue: number): number; /** * For a pointer coordinate, this function returns the value and dataIndex associated. * Returns `-1` if the coordinate does not match a value. */ export declare function getRadiusAxisIndex(axisConfig: ComputedAxis, pointerValue: number): number;