import { FC, ReactNode } from "react"; import { MaskProps } from "../Mask"; import { XHComponentCommonProps } from "../../types"; export declare type LoadingProps = { mask?: MaskProps["mask"]; color?: string; tip?: string | ReactNode; size?: number; } & XHComponentCommonProps; declare const Loading: FC; export default Loading;