import React from 'react'; import type { PaymentSchemaAction, PaymentSchemaButtonItem } from '../../../sdk/schema'; /** 支付 schema 按钮渲染器。 */ export declare const SchemaButton: ({ item, onAction, }: { item: PaymentSchemaButtonItem; onAction: (action: PaymentSchemaAction) => void; }) => React.JSX.Element;