import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as components from "../models/components/index.js"; import * as operations from "../models/operations/index.js"; export declare class Guest extends ClientSDK { /** * Initialize a Bolt payment for guest shoppers * * @remarks * Initialize a Bolt guest shopper's intent to pay for a cart, using the specified payment method. Payments must be finalized before indicating the payment result to the shopper. Some payment methods will finalize automatically after initialization. For these payments, they will transition directly to "finalized" and the response from Initialize Payment will contain a finalized payment. */ initialize(security: operations.GuestPaymentsInitializeSecurity, guestPaymentInitializeRequest: components.GuestPaymentInitializeRequest, xPublishableKey: string, xMerchantClientId?: string | undefined, options?: RequestOptions): Promise; /** * Finalize a pending guest payment * * @remarks * Finalize a pending payment being made by a Bolt guest shopper. Upon receipt of a finalized payment result, payment success should be communicated to the shopper. */ performAction(security: operations.GuestPaymentsActionSecurity, paymentActionRequest: components.PaymentActionRequest, id: string, xPublishableKey: string, xMerchantClientId?: string | undefined, options?: RequestOptions): Promise; } //# sourceMappingURL=guest.d.ts.map