import { ReactElement } from 'react'; interface LoadingProps { className?: string; full?: boolean; } declare const Loading: (props: LoadingProps) => ReactElement; export type { LoadingProps }; export { Loading };