import "@tanstack/react-table"; declare module "@tanstack/react-table" { // https://github.com/TanStack/table/issues/44#issuecomment-1377024296 interface TableMeta { getRowClassName?: (row: Row) => string; } interface ColumnMeta { headerClassName?: string; cellClassName?: string; label?: string; kind?: string; } interface FilterFns { inDateRange?: FilterFn; arrSome?: FilterFn; } // https://github.com/TanStack/table/discussions/4554 interface ColumnFiltersOptions { filterFns?: Record>; } }