import { BoxProps } from '@mui/material';
export type SkeletonTableProps = BoxProps & {
    numRows?: number;
    numCols?: number;
    rowHeight?: string;
    fullWidthCells?: boolean;
};
/**
 * Skeleton component designed to mimic a table with an arbitrary number of rows and columns.
 *
 * Implemented using CSS grid.
 */
export declare function SkeletonTable(props: SkeletonTableProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=SkeletonTable.d.ts.map