import type { ReactNode } from "react"; export interface TableHeaderCellProps { /** Sort key this column emits. Enables the sort control when the table is `sortable`. */ sortKey?: string; /** Right-aligns and renders tabular figures (D62). */ numeric?: boolean; /** Header label. */ children?: ReactNode; className?: string; } /** `