import { APIResponse, ConfigType } from "../../../../storefront-api-client/src"; import { CartV2 } from "../types"; export declare const removeGiftCardFromCart: (input: RemoveGiftCardFromCartQueryParams, excludeFields?: string[], config?: ConfigType) => Promise | APIResponse>; export type RemoveGiftCardFromCartQueryParams = { cartId: string; giftCardId?: string | null; };