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