import { RowData } from '@tanstack/react-table'; /** * TanStack react-table v8 module augmentation — D-156 final close. * * Extends the empty `ColumnMeta` interface (intentionally left open by the * library for consumer augmentation) with an optional `numeric` flag. * * When `meta: { numeric: true }` is set on a column definition, the DataTable * renders the corresponding `` with the `tabular-nums` CSS class so that * numeric values align at the decimal point across rows. * * This is an ADDITIVE change — columns without `meta.numeric` receive no class * change. No breaking impact on existing 38 downstream consumers. */ declare module "@tanstack/react-table" { interface ColumnMeta { numeric?: boolean; } } //# sourceMappingURL=DataTable.types.d.ts.map