import { type ComputedAxis } from "../models/axis.js";
import { type ZAxisDefaultized } from "../models/z-axis.js";
import { type ColorLegendSelector } from "./colorLegend.types.js";
/**
 * Helper to select an axis definition according to its direction and id.
 */
export declare function useAxis({
  axisDirection,
  axisId
}: ColorLegendSelector): ZAxisDefaultized | ComputedAxis;