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