import * as React from 'react'; import type { CommonPropsType } from '../../types'; export declare const WdLoading: ({ text, icon }: { text: any; icon?: any; }) => JSX.Element; export interface WdLoadingProps extends CommonPropsType { text?: string; icon?: React.ReactElement; }