/** * Enum for axis of the ScrollTracker. Use X for horizontal scrolling and Y for vertical scrolling. */ declare enum Axis { X = 1, Y = 2 } export default Axis;