import type { FunctionComponent } from 'react'; import { RowSelectVariant } from '@patternfly/react-table'; export interface SkeletonTableBodyProps { /** Number of columns in the table */ columnsCount: number; /** Number of rows in the table */ rowsCount?: number; /** Custom OUIA ID */ ouiaId?: string | number; /** Flag indicating if the table is selectable */ isSelectable?: boolean; /** Flag indicating if the table is expandable */ isExpandable?: boolean; /** Determines if the row selection variant (radio/checkbox) */ selectVariant?: RowSelectVariant; } declare const SkeletonTableBody: FunctionComponent; export default SkeletonTableBody;