import type { PiPaymentDraftState, PiPaymentEftposOpenOptions, PiPaymentUpdateInput } from '../../../sdk'; export interface EftposRetryInput { amount: string | number; surcharge?: PiPaymentUpdateInput['surcharge']; } /** 使用上一次已确认的金额与手续费重新发起交易。 */ export declare const resolveEftposRetryInput: (options?: Pick, draft?: Pick) => EftposRetryInput | undefined;