/** * Returns the text anchor position for a label based on its coordinates. * @param labelX - The x coordinate of the label * @param labelY - The y-coordinate of the label * @returns The text anchor position ('start' or 'end') */ export declare const getLabelTextAnchor: (labelX: number, labelY: number) => string;