import { PaymentResult } from '../payment/PaymentResult.type'; export type CheckoutCallbacks = { onPaymentSucceeded?: (result: PaymentResult) => void; onPaymentFailed?: (result: string) => void; onActionRequired?: (redirectUrl: string) => void; onLoadingStateChange?: (isLoading: boolean) => void; }; //# sourceMappingURL=CheckoutCallback.type.d.ts.map