import { type FC, type ReactNode } from 'react'; type RowProps = { /** * 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; /** * Content of the row. */ children?: ReactNode; }; /** * __Row__ * * A table row. * * - [Examples](https://atlassian.design/components/table/examples) */ declare const Row: FC; export default Row;