/**
 * Enumeration constants to define 2D text label horizontal alignment for vertical axes
 */
export declare enum ELabelAlignment {
    /**
     * Aligned to minimise the space between the label and axis, ie right for left axis and left for right axis (opposite if inner axis)
     */
    Auto = "Auto",
    /**
     * Left Aligned
     */
    Left = "Left",
    /**
     * Right Aligned
     */
    Right = "Right",
    /**
     * Center Aligned
     */
    Center = "Center"
}
