import { Stock, Response } from "../../types";
declare function fetchProductsStockAtFacility(productIds: Array<string>, facilityId?: string): Promise<Array<Stock> | Response>;
declare function fetchProductsStock(productIds: Array<string>): Promise<Array<Stock> | Response>;
export { fetchProductsStock, fetchProductsStockAtFacility };
