/**
 * Higher order function that transform a `getLabelTransform` to the <text /> anchor props.
 */
export declare const createGetLabelTextAnchors: (getLabelTransform: (px: number, py: number, tickLabelPosition: "center" | "after" | "before") => {
  verticalAlign: "start" | "middle" | "end";
  horizontalAlign: "start" | "middle" | "end";
}) => (px: number, py: number, tickLabelPosition: "center" | "after" | "before") => {
  textAnchor: "start" | "middle" | "end";
  dominantBaseline: "hanging" | "middle" | "auto";
};