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; } /** ``. `aria-sort` belongs on the th, never on the inner * button — assistive tech reads the sort state from the column header. */ export declare function TableHeaderCell({ sortKey, numeric, children, className }: TableHeaderCellProps): import("react").JSX.Element; //# sourceMappingURL=TableHeaderCell.d.ts.map