import React from 'react'; import { PayProps } from './const'; import './index.less'; /** * @title: 支付组件 * @description: * @Author: hongbing.wang * @Date: 2024-08-20 14:59 */ declare const Pay: ({ api, onChange: onChangeStatus, className, terminal, net, isMobile, tyroUrl, tyroVersion, formatAmount, client, }: PayProps & { terminal: { network: boolean; }; net: boolean; isMobile: boolean; tyroUrl?: string | undefined; tyroVersion?: string | undefined; formatAmount(amount: number | string, precision: number, symbol: string): string; client: string; }) => React.JSX.Element; export default Pay;