/** Contains the result of a payment request */ export declare class PaymentResultBaseModel { _: 'paymentResult'; /** * True, if the payment request was successful; otherwise the verification_url will * be not empty */ success: boolean; /** URL for additional payment credentials verification */ verificationUrl: string; }