import React from 'react'; export interface LoadingProps { prefix?: string; className?: string; style?: React.CSSProperties; visible?: boolean; size?: number; } declare const Loading: (props: LoadingProps) => import("react/jsx-runtime").JSX.Element; export { Loading };