import React from 'react'; import { TdLoadingProps } from './type'; import { StyledProps } from '../common'; export interface LoadingProps extends TdLoadingProps, StyledProps { } declare const Loading: React.FC; export default Loading;