import React from 'react';
import type { SkeletonShow } from '../skeleton/Skeleton';
type StatRootContextValue = {
    inRoot: boolean;
    skeleton?: SkeletonShow;
};
declare const StatRootContext: React.Context<StatRootContextValue>;
export default StatRootContext;
