import React from 'react'; import { PosProps } from './const'; /** * @title: 支付金额信息配置页 * @description: 配置支付金额与手续费 * @return React.Element * @Author: hongbing.wang * @Date: 2024-08-12 11:35 */ declare const _default: ({ className, onChange, onClose, formatAmount, isMobile, net, client }: { className?: string | undefined; onChange?: ((status: "page" | "success" | "fail" | "print" | "mark_tx_processed", params?: string | { [keys: string]: unknown; } | undefined, other?: any) => void) | undefined; onClose: () => void; formatAmount(amount: number | string, precision: number, symbol: string): string; isMobile: boolean; net: boolean; client: string; }) => React.JSX.Element; export default _default;