/** * Extension interface to extend the types of the columnDefinition from the tanstack table. * @internal */ export interface DataTableCustomHeaderColumnDef { /** * User-friendly label for the column header, used in e.g. column settings modal and for `aria-label`. */ label?: string; }