import { TableFeature } from "../../types/TableFeatures.js";
//#region src/features/cell-spanning/cellSpanningFeature.d.ts
/**
 * Feature that merges adjacent cells that share a value into row-spanning
 * cells, and lets a column def declare column-spanning cells per row.
 *
 * Stateless: spans are always derived from the rows that are currently
 * rendered, so there is nothing to persist and nothing to configure beyond the
 * column defs.
 */
declare const cellSpanningFeature: TableFeature;
//#endregion
export { cellSpanningFeature };