import { StackProps } from '@mui/material'; import { LoaderProps } from './types'; import { ReactNode } from 'react'; interface Props { loadingIcon?: ReactNode; } export declare const Loader: ({ label, loadingIcon, fullPage, inactive, ...stackProps }: LoaderProps & StackProps & Props) => import("@emotion/react/jsx-runtime").JSX.Element | null; export {};