export type DialogLoadingProps = {
	className?: string;
	message?: string;
	mask?: boolean;
};
/**
 * Loading弹框
 * ```
 * 1. 可嵌套使用
 * 2. 为什么不推荐使用
 *    dialogLoading.open 打开的内容无法适配兼容自定义主题、无法适配兼容旧版浏览器、无法兼容国际化
 *    适配兼容旧版浏览器（https://ant-design.antgroup.com/docs/react/compatible-style-cn）
 * 3. 需要修改默认主题风格的场景，请使用
 *    const { appDialogLoading } = FbaApp.useDialogLoading();
 *    appDialogLoading.open({})
 * ```
 */
export declare const dialogLoading: {
	open: (props?: DialogLoadingProps) => {
		close: () => void;
	};
	/**
	 * ```
	 * 1. 关闭最新弹框，如果有多个弹框只能关闭最后一个
	 * 2. 多个弹框主动关闭，只能使用 dialogModal.open()返回值中的close
	 * ```
	 */
	close: () => void;
};

export {};
