import React, { CSSProperties } from 'react'; import { PayProps, PosProps } from './const'; import './device.less'; /** * @title: 设备选择页 * @description: 选择设备信息,无设备增加提示;仅有一条,默认选中跳走;多条记录则停留等待用户选择 * @return React.Element * @Author: hongbing.wang * @Date: 2024-08-12 11:40 */ declare const _default: ({ api, onChange, onClose, className, device_number, isMobile, net, client, formatAmount, containerStyle, }: { api: PayProps['api']; className?: string | undefined; onChange?: ((status: "page" | "success" | "fail" | "print" | "mark_tx_processed", params?: string | { [keys: string]: unknown; } | undefined, other?: any) => void) | undefined; onClose: () => void; device_number?: string | number | undefined; isMobile: boolean; net: boolean; client: string; formatAmount(amount: number | string, precision: number, symbol: string): string; containerStyle: CSSProperties; }) => React.JSX.Element; export default _default;