import { SystemProps } from '../../system/interface'; import { ResponsiveProps } from '../../utils'; import { SortType } from '../TableSort/interface'; export interface TableHeaderCellProps { alignment?: SystemProps['textAlign']; minWidth?: ResponsiveProps; width?: ResponsiveProps; sortable?: boolean; sort?: SortType; }