import type { AddItemToCartQueryParams } from "../../../storefront-api/src/__api/mutations/addItemToCart"; import { CreatePayWithIkasSessionUrlQueryParams } from "../../../storefront-api/src/__api/mutations/createPayWithIkasSessionUrl"; import type { RemoveGiftCardFromCartQueryParams } from "../../../storefront-api/src/__api/mutations/removeGiftCardFromCart"; import type { SaveCartQueryParams } from "../../../storefront-api/src/__api/mutations/saveCart"; import type { SaveCartCouponCodeQueryParams } from "../../../storefront-api/src/__api/mutations/saveCartCouponCode"; import type { UpdateCartCampaignOfferQueryParams } from "../../../storefront-api/src/__api/mutations/updateCartCampaignOffer"; import type { GetCartByIdQueryParams } from "../../../storefront-api/src/__api/queries/getCartById"; import { APIResponse } from "../../../storefront-api-client/src"; import { IkasCart } from "../../../storefront-models/src"; export declare function apiGetCartById(params: GetCartByIdQueryParams): Promise>; export declare function apiSaveCart(params: SaveCartQueryParams): Promise>; export declare function apiCreatePayWithIkasSessionUrl(params: CreatePayWithIkasSessionUrlQueryParams): Promise>; export declare function apiSaveCartCouponCode(params: SaveCartCouponCodeQueryParams): Promise>; export declare function apiRemoveGiftCardFromCart(params: RemoveGiftCardFromCartQueryParams): Promise>; export declare function apiAddItemToCart(params: AddItemToCartQueryParams): Promise>; export declare function apiUpdateCartCampaignOffer(params: UpdateCartCampaignOfferQueryParams): Promise>;