import type { CreateAdyenBalancePlatformPaymentSessionQueryParams } from "../../../storefront-api/src/__api/mutations/createAdyenBalancePlatformPaymentSession"; import type { CreateKlarnaClientTokenQueryParams } from "../../../storefront-api/src/__api/mutations/createKlarnaClientToken"; import type { CreatePaypalOrderQueryParams } from "../../../storefront-api/src/__api/mutations/createPaypalOrder"; import type { CreateSaleTransactionWithCartQueryParams } from "../../../storefront-api/src/__api/mutations/createSaleTransactionWithCart"; import type { CreateStripePaymentIntentQueryParams } from "../../../storefront-api/src/__api/mutations/createStripePaymentIntent"; import type { GetPaypalClientIdQueryParams } from "../../../storefront-api/src/__api/mutations/getPaypalClientId"; import type { RetrieveInstallmentInfoQueryParams } from "../../../storefront-api/src/__api/mutations/retrieveInstallmentInfo"; import type { CheckCartStocksQueryParams } from "../../../storefront-api/src/__api/queries/checkCartStocks"; import type { CheckStocksQueryParams } from "../../../storefront-api/src/__api/queries/checkStocks"; import type { GetAvailableShippingCountriesQueryParams } from "../../../storefront-api/src/__api/queries/getAvailableShippingCountries"; import type { GetAvailableStockLocationsQueryParams } from "../../../storefront-api/src/__api/queries/getAvailableStockLocations"; import type { ListCheckoutSettingsQueryParams } from "../../../storefront-api/src/__api/queries/listCheckoutSettings"; import type { ListPaymentGatewayQueryParams } from "../../../storefront-api/src/__api/queries/listPaymentGateway"; import type { ListProductFileQueryParams } from "../../../storefront-api/src/__api/queries/listProductFile"; import type { ListStockLocationQueryParams } from "../../../storefront-api/src/__api/queries/listStockLocation"; import { APIResponse } from "../../../storefront-api-client/src"; import { IkasAvailableStockLocation, IkasCheckoutSettings, IkasPaymentGateway, IkasStockLocation } from "../../../storefront-models/src"; export declare function apiCreateSaleTransactionWithCart(params: CreateSaleTransactionWithCartQueryParams): Promise | APIResponse>; export declare function apiListPaymentGateway(params: ListPaymentGatewayQueryParams): Promise>; export declare function apiListProductFile(params: ListProductFileQueryParams): Promise | APIResponse>; export declare function apiRetrieveInstallmentInfo(params: RetrieveInstallmentInfoQueryParams): Promise | APIResponse>; export declare function apiCheckStocks(params: CheckStocksQueryParams): Promise | APIResponse>; export declare function apiCheckCartStocks(params: CheckCartStocksQueryParams): Promise | APIResponse>; export declare function apiListCheckoutSettings(params: ListCheckoutSettingsQueryParams): Promise>; export declare function apiGetAvailableShippingCountries(params: GetAvailableShippingCountriesQueryParams): Promise | APIResponse>; export declare function apiListStockLocations(params: ListStockLocationQueryParams): Promise>; export declare function apiGetAvailableStockLocations(params: GetAvailableStockLocationsQueryParams): Promise>; export declare function apiCreateStripePaymentIntent(params: CreateStripePaymentIntentQueryParams): Promise>; export declare function apiCreateKlarnaClientToken(params: CreateKlarnaClientTokenQueryParams): Promise>; export declare function apiCreateAdyenBalancePlatformPaymentSession(params: CreateAdyenBalancePlatformPaymentSessionQueryParams): Promise>; export declare function apiGetPayPalClientId(params: GetPaypalClientIdQueryParams): Promise>; export declare function apiCreatePayPalOrder(params: CreatePaypalOrderQueryParams): Promise>;