/** * Copyright © INOVUA TRADING. * * This source code is licensed under the Commercial License found in the * LICENSE file in the root directory of this source tree. */ import React from 'react'; type TypeScrollRegionProps = { dir?: -1 | 1; onMouseEnter: (event: any) => void; onMouseLeave: () => void; DEFAULT_CLASS_NAME?: string; }; declare const ScrollingRegion: React.ForwardRefExoticComponent>; export default ScrollingRegion;