import { ApiMethodDeclaration } from '..'; type ParamsData = { productId: number; locationId: number; }; type ResponseData = { stock: number; }; export declare const getStockByLocation: ApiMethodDeclaration; export {};