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