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