import { APIResponse, ConfigType } from "../../../../storefront-api-client/src"; import { CreateSaleTransactionWithCartInput, CreateStripePaymentIntentResponse } from "../types"; export declare const createStripePaymentIntent: (input: CreateStripePaymentIntentQueryParams, excludeFields?: string[], config?: ConfigType) => Promise | APIResponse>; export type CreateStripePaymentIntentQueryParams = { input: CreateSaleTransactionWithCartInput; };