import React from 'react'; import type { PaymentPageSchema, PaymentSchemaAction } from '../../../sdk'; /** eftpos 支付执行页,只渲染标准 schema。 */ export declare const PaymentProcessPage: ({ schema, onAction, }: { schema?: PaymentPageSchema | undefined; onAction: (action: PaymentSchemaAction, inputValues?: Record) => void; }) => React.JSX.Element;