import type { FC } from 'react'; interface LoadingProps { /** Overwrite className */ className?: string; /** Description of the loading */ description?: string; /** Title of the loading */ title?: string; /** Size of the loading */ size?: 'sm' | 'lg'; /** Whether the loading is inline */ inline?: boolean; } declare const Loading: FC; export default Loading;