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