/** * @jsxRuntime classic * @jsx jsx */ import type { FC, ReactNode } from 'react'; interface TRProps { /** * A `testId` prop is a unique string that appears as a data attribute `data-testid` * in the rendered code, serving as a hook for automated tests. */ testId?: string; /** * If the row has programatic selection applied. */ isSelected?: boolean; /** * Adjust the behavior of the element depending on whether the row is in the `THead` or in the `TBody`. */ isBodyRow?: boolean; /** * Content of the row. */ children?: ReactNode; /** * If the row is a subitem (an expandable row nested under a parent). */ isSubitem?: boolean; } /** * __Row__ * * A row primitive. * * - [Examples](https://atlassian.design/components/table/examples) */ export declare const TR: FC; export {};