/** * 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 { TypeLockedRow, TypeComputedProps, TypeComputedColumn } from '../../../types'; declare const LockedCellRow: ({ row, rowIndex, computedProps, first, last, lastInSection, firstInSection, rtl, column, columnIndex, showBorderRight, showBorderBottom, showBorderLeft, computedWidth, rowPosition, }: { row: TypeLockedRow; computedWidth: number; rowIndex: number; columnIndex: number; last: boolean; first: boolean; rtl: boolean; lastInSection: boolean; firstInSection: boolean; showBorderRight: boolean; showBorderBottom: boolean; showBorderLeft: boolean; computedProps: TypeComputedProps; column: TypeComputedColumn; rowPosition: 'start' | 'end'; }) => JSX.Element; export default LockedCellRow;