import type { TypographyProps } from '@mui/material';
interface Props extends TypographyProps {
    message?: string;
}
export default function LoadingEllipses({ message, variant, ...rest }: Props): import("react/jsx-runtime").JSX.Element;
export {};
