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