import React from 'react'; /** 支付状态图标类型。 */ export declare type PiPaymentStatusIconType = 'loading' | 'success' | 'warn' | 'fail' | 'question'; /** 使用旧 EFTPOS 图片资源风格的新模块状态图标。 */ export declare const StatusIcon: ({ status }: { status: PiPaymentStatusIconType; }) => React.JSX.Element;