import React from 'react'; import { BaseSkeletonProps } from '../../Skeleton'; export interface TableSkeletonProps extends BaseSkeletonProps { rowCount?: number; colCount?: number; spacing?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10; } export declare const TableSkeleton: ({ rowCount, colCount, spacing }: TableSkeletonProps) => React.JSX.Element;