import React from 'react'; import './_style/index.less'; declare const LoadingTypes: ["normal", "jhWxgzh"]; export declare type LoadingTypes = typeof LoadingTypes[number]; export interface LoadingProps { show?: boolean; text?: string; transparent?: boolean; className?: string; style?: object; prefix?: string; url?: string; type?: LoadingTypes; mockEnv?: string; } declare const Loading: React.FC; export default Loading;