import React from 'react'; export interface PaymentProps { value: any; zhiFubaoRequired: boolean; required: boolean; shopId: string; shopList: any[]; disabled: boolean; id: string; onChange: (value: any) => void; onSearch: (value: any) => void; onBlur: (value: any, type: string) => void; replaceValueCh?: { [key: string]: string; }; } declare const Payment: (props: Partial) => React.JSX.Element; export default Payment;