import { ColumnRowsGrouping, RowsGrouping } from './types'; import { ColumnConfig, ObjectForExtending } from '../types'; import { CellContent, CellInfoGlideInstance } from '../TableGlideInstance/type'; export declare const RowsGroupingRenderCell: ({ rowsGrouping, renderCellProps, groupByArr, groupedColRenderers, col, }: { col: ColumnConfig; rowsGrouping: ColumnRowsGrouping> | undefined; renderCellProps: CellInfoGlideInstance; groupByArr: string[]; groupedColRenderers: Partial>['groupedColumnProps']>, 'renderCell' | 'rowsGrouping'>>; }) => CellContent;