import React from 'react';
import type { SkeletonMethods } from '../skeleton/SkeletonHelper';
import type { SkeletonShow } from '../skeleton/Skeleton';
export default function useStatSkeleton(skeleton?: SkeletonShow, method?: SkeletonMethods): {
    hasSkeleton: boolean;
    context: import("../../shared/Context").ContextProps;
    skeletonClass: any;
    applySkeletonAttributes: (attributes: React.HTMLProps<HTMLElement>) => void;
};
