UNPKG

@atlaskit/dynamic-table

Version:

A dynamic table displays rows of data with built-in pagination, sorting, and re-ordering functionality.

12 lines (11 loc) 414 B
/** * @jsxRuntime classic * @jsx jsx */ import { type HTMLAttributes } from 'react'; import { type ITableRowProps } from '../table-row'; export declare const RankableTableBodyRow: import('react').ForwardRefExoticComponent<HTMLAttributes<HTMLTableRowElement> & ITableRowProps & { isRanking?: boolean; isRankingItem?: boolean; testId?: string; } & import('react').RefAttributes<HTMLTableRowElement>>;