/** * Copyright © INOVUA TRADING. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import { MutableRefObject } from 'react'; import { CellProps } from '../Layout/ColumnLayout/Cell/CellProps'; import { TypeComputedProps, TypeDataGridProps } from '../types'; declare const useColumnHover: (_props: TypeDataGridProps, _computedProps: TypeComputedProps, computedPropsRef: MutableRefObject) => { columnIndexHovered: number; onColumnMouseEnter: (cellProps: CellProps) => void; onColumnMouseLeave: (cellProps: CellProps) => void; }; export default useColumnHover;