import React from 'react'; interface LoadingProps { prefixCls?: string; } const Loading: React.FC> = ({ prefixCls }) => ( ); export default Loading;