/** * 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 { TypeComputedColumn } from '@inovua/reactdatagrid-community/types'; export declare const sumColumnWidth: (acc: any, c: any) => any; export declare const getLockedEndWrapperTranslate: ({ virtualizeColumns, lockedEndColumns, availableWidth, }: { virtualizeColumns: boolean; lockedEndColumns: TypeComputedColumn[]; availableWidth: number; }) => number; export declare const updateLockedWrapperPositions: ({ computedRowExpandEnabled, computedStickyRows, computedFooterRows, computedLockedRows, rowDetailsWidth, lockedStartColumns, lockedEndColumns, virtualListBorderLeft, lockedRows, getScrollLeftMax, rtl, }: { computedRowExpandEnabled: any; computedStickyRows: any; computedFooterRows: any; computedLockedRows: any; rowDetailsWidth: any; lockedStartColumns: any; lockedEndColumns: any; virtualListBorderLeft: any; lockedRows: any; getScrollLeftMax: any; rtl: any; }, scrollLeft: any, _: any) => void;