import { CircularProgressProps } from '@mui/material/CircularProgress';
export interface LoaderProps {
    noContainer?: boolean;
    title: string;
}
export default function Loader(props: LoaderProps & CircularProgressProps): import("react/jsx-runtime").JSX.Element;
