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