import React from 'react';
declare type SkeletonTableProps = {
    numRows?: number;
    numCols?: number;
    rowHeight?: string;
    className?: string;
};
/**
 * Skeleton component designed to mimic a table with an arbitrary number of rows and columns.
 *
 * Implemented using CSS grid.
 */
export declare const SkeletonTable: React.FC<SkeletonTableProps>;
export {};
