import * as react_jsx_runtime from 'react/jsx-runtime';
import { PropsForTranslation } from '../hooks/useTranslation.mjs';
import '../hooks/useLanguage.mjs';
import 'react';

type LoadingAnimationTranslation = {
    loading: string;
};
type LoadingAnimationProps = {
    loadingText?: string;
    classname?: string;
};
/**
 * A Component to show when loading data
 */
declare const LoadingAnimation: ({ overwriteTranslation, loadingText, classname }: PropsForTranslation<LoadingAnimationTranslation, LoadingAnimationProps>) => react_jsx_runtime.JSX.Element;

export { LoadingAnimation, type LoadingAnimationProps };
