import type { SxProps } from '@mui/material';
import React from 'react';
declare const LoadingWrapper: ({ loading, children, className, bigLoader, light, sx, ...rest }: {
    loading?: boolean;
    children: React.ReactNode;
    className?: string;
    bigLoader?: boolean;
    light?: boolean;
    sx?: SxProps;
}) => import("react/jsx-runtime").JSX.Element;
export default LoadingWrapper;
