import React from 'react'; import { StyledLoadingVariants } from "./style"; import { MestCss, MestGenericProps } from "../themes"; type Props = { spaceRatio?: number; innerCss?: MestCss; innerClassName?: string; } & MestGenericProps; type NativeAttrs = Omit, keyof Props>; export type LoadingProps = Props & NativeAttrs & StyledLoadingVariants; declare const Loading: React.FC>; export default Loading;