import { ObjectForExtending, TableConfig } from '../types'; import { AllRowsMapEntry } from '../feature-row-markers/types'; export declare const useFlattenedRows: ({ rows, tableConfig, groupedCols, }: { rows: readonly RowType[]; tableConfig: TableConfig; groupedCols: string[] | undefined; }) => { flattenedRows: readonly RowType[]; expandedRowsIdsStateAndSetter: [Set, (newV: Set | ((prev: Set) => Set)) => void]; expandedRowsIds: Set; isExpandedAllRows: boolean; toggleExpandAllButton: () => void; allRowsMap: Map> | null; };