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; } /** ``. `rowId` is the key the `selected` set holds. */ export declare function TableRow({ rowId, selectLabel, children, className }: TableRowProps): import("react").JSX.Element; //# sourceMappingURL=TableRow.d.ts.map