import type { FC } from 'react'; interface TableLoadingStateProps { /** * Edge the skeletons sit at. 'end' (default) is the bottom loader; 'start' * is the prepend loader above the rows — own test id + a data attribute the * scroll compensation measures. */ position?: 'start' | 'end'; /** Number of skeleton rows; defaults to the table-level skeletonCount. */ count?: number; } export declare const TableLoadingState: FC; export {};