import React from 'react'; import { NormalTypes } from "../utils/prop-types"; export type LoadingTypes = NormalTypes; interface Props { type?: LoadingTypes; color?: string; className?: string; spaceRatio?: number; } type NativeAttrs = Omit, keyof Props>; export type LoadingProps = Props & NativeAttrs; declare const Loading: React.ForwardRefExoticComponent>; export default Loading;