import { TableProps } from './interfaces'; import { StickyColumnsModel } from './sticky-columns'; import { TableRole } from './table-role'; interface SkeletonRowsProps { count: number; hasDataRows: boolean; totalColumnsCount: number; loadingText: string | undefined; hasSelection: boolean; hasFooter: boolean; stickyState: StickyColumnsModel; tableRole: TableRole; ariaLabels: TableProps['ariaLabels']; cellVerticalAlign: TableProps.VerticalAlign | undefined; computedVariant: string; visibleColumnDefinitions: readonly TableProps.ColumnDefinition[]; wrapLines: boolean | undefined; resizableColumns: boolean | undefined; colIndexOffset: number; } export declare function SkeletonRows({ count, hasDataRows, totalColumnsCount, loadingText, hasSelection, hasFooter, stickyState, tableRole, ariaLabels, cellVerticalAlign, computedVariant, visibleColumnDefinitions, wrapLines, resizableColumns, colIndexOffset }: SkeletonRowsProps): JSX.Element; export {};