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