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