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