/** * 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 { TypeComputedProps, TypeStickyRows, TypeDataGridProps } from '../../../community-edition/types'; import { MutableRefObject } from 'react'; declare const useStickyRows: (props: TypeDataGridProps, computedProps: TypeComputedProps, computedPropsRef: MutableRefObject) => { computedStickyRows?: TypeStickyRows | undefined; setStickyGroupsIndexes?: ((stickyGroupsIndexes: TypeStickyRows) => void) | undefined; }; export default useStickyRows;