/**
 * Web Skeleton Figure
 *
 */
import React from 'react';
export type SkeletonTableRows = string | number;
export type SkeletonTableChildren = string | ((...args: any[]) => any) | React.ReactNode;
export interface SkeletonTableProps extends Omit<React.HTMLProps<HTMLDivElement>, 'rows' | 'children'> {
    rows?: SkeletonTableRows;
    children?: SkeletonTableChildren;
}
export default class SkeletonTable extends React.Component<SkeletonTableProps, any> {
    static contextType: React.Context<import("../../../shared/Context").ContextProps>;
    static defaultProps: {
        rows: number;
        children: any;
    };
    rowsLength: number[];
    constructor(props: SkeletonTableProps);
    render(): import("react/jsx-runtime").JSX.Element;
}
