import { BoltTypescriptSDKCore } from "../core.js"; import { RequestOptions } from "../lib/sdks.js"; import * as components from "../models/components/index.js"; import { ConnectionError, InvalidRequestError, RequestAbortedError, RequestTimeoutError, UnexpectedClientError } from "../models/errors/httpclienterrors.js"; import * as errors from "../models/errors/index.js"; import { SDKError } from "../models/errors/sdkerror.js"; import { SDKValidationError } from "../models/errors/sdkvalidationerror.js"; import * as operations from "../models/operations/index.js"; import { Result } from "../types/fp.js"; /** * Initialize a Bolt payment for logged in shoppers * * @remarks * Initialize a Bolt logged-in 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. */ export declare function paymentsLoggedInInitialize(client: BoltTypescriptSDKCore, paymentInitializeRequest: components.PaymentInitializeRequest, xPublishableKey: string, xMerchantClientId?: string | undefined, options?: RequestOptions): Promise>; //# sourceMappingURL=paymentsLoggedInInitialize.d.ts.map