/** Map of column slugs to human-readable header labels. */ export type TableColumnNames = Record; /** Breakpoint-keyed lists of column slugs for responsive tables. */ export interface TableColumnConfig { xs?: T[]; sm?: T[]; md?: T[]; lg?: T[]; xl?: T[]; } //# sourceMappingURL=TableColumns.d.ts.map