import { SubRows } from './types'; import { ObjectForExtending } from '../types/utils.type'; export declare const isMergedSubRowsView: (subRows: SubRows | undefined) => boolean; export declare function flattenSubRowsToMergedLeaves(rows: readonly RowType[], getSubRows: (row: RowType) => RowType[] | undefined, mergedColumns: readonly string[]): RowType[];