import { RowData } from '@tanstack/react-table'; import { TdHTMLAttributes } from 'react'; import { FilterOptions } from '../filters/Filters'; declare module "@tanstack/react-table" { interface ColumnMeta { type?: "string" | "number" | "boolean" | "date" | string; format?: string; labels?: Record; filter?: FilterOptions; sort?: string; cellProps?: TdHTMLAttributes; /** * Hide the cell */ hidden?: boolean; } }