/** * Higher order function that transform a `getLabelTransform` to the 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"; };