/// import { LoadingViewProps as RjsLoadingViewProps } from "reactjs-view"; export interface LoadingViewProps extends RjsLoadingViewProps { size?: "small" | "large" | "default"; color?: string; prefixCls?: string | undefined; tip?: string | undefined; delay?: number | undefined; } declare const LoadingView: ({ size, color, prefixCls, tip, delay, indicator, ...rest }: LoadingViewProps) => JSX.Element; export { LoadingView }; //# sourceMappingURL=index.d.ts.map