import React from 'react'; import type { PaymentSchemaAction, PaymentSchemaRow as PaymentSchemaRowType } from '../../../sdk'; /** 支付 schema 单行渲染器。 */ export declare const SchemaRow: ({ row, onAction, inputValues, onInputChange, }: { row: PaymentSchemaRowType; onAction: (action: PaymentSchemaAction, inputValues?: Record) => void; inputValues: Record; onInputChange: (name: string, value: string) => void; }) => React.JSX.Element;