import type { ReactNode } from "react"; export interface TableRowProps { /** Stable identity for selection. Required for selectable tables (D62). */ rowId?: string; /** Accessible name for this row's selection checkbox. */ selectLabel?: string; /** The row's cells. */ children: ReactNode; className?: string; } /** `