/** * Extension interface to extend the types of the columnDefinition from the tanstack table. * @public */ export interface DataTableAlignmentColumnDef { /** Defines the text alignment inside the column cell. */ alignment?: 'left' | 'center' | 'right'; }