import type { PiPaymentRuntime } from '../../types'; /** 发起统一 payment 支付。 */ export declare const postEftposPay: (runtime: PiPaymentRuntime, data: Record, config?: Record) => Promise; /** 发起统一 payment 退款。 */ export declare const postEftposRefund: (runtime: PiPaymentRuntime, data: Record, config?: Record) => Promise; /** 查询统一 payment 交易状态。 */ export declare const postEftposVerify: (runtime: PiPaymentRuntime, data: Record, config?: Record) => Promise; /** 执行统一 payment action。 */ export declare const postEftposAction: (runtime: PiPaymentRuntime, data: Record, config?: Record) => Promise; /** 查询统一 payment 交易列表。 */ export declare const postEftposTransactions: (runtime: PiPaymentRuntime, data: Record, config?: Record) => Promise; /** 创建 Tyro 交易记录。 */ export declare const postEftposTransaction: (runtime: PiPaymentRuntime, data: Record, config?: Record) => Promise; /** 更新 Tyro 交易记录。 */ export declare const updateEftposTransaction: (runtime: PiPaymentRuntime, id: string | number, data: Record, config?: Record) => Promise; /** 查询 paired card readers。 */ export declare const getEftposReaders: (runtime: PiPaymentRuntime, params: Record) => Promise;