import React from 'react'; import './index.less'; interface ThreedsLoadingProps { /** 主标题(单行模式使用,覆盖默认文案) */ title?: string; /** 副标题(多行模式第二行,可选) */ subtitle?: string; /** 描述说明(多行模式第三行,可选) */ description?: string; /** 是否展示"支付完成返回"按钮 */ showSuccessBackButton?: boolean; /** "支付完成返回"按钮点击回调 */ onSuccessBack?: () => void; } /** * @title: 等待加载页 * @description: 通用的支付等待 loading 页面。 * - 默认单行文案模式(传 title 或使用默认文案) * - 传入 subtitle / description 后进入多行文案模式 * 向后兼容:不传新 props 时行为与原来完全一致。 */ declare const ThreedsLoading: React.FC; export default ThreedsLoading;