import { create } from './create'; import { getAllMovements } from './get-all-movements'; import { getOne } from './get-one'; import { getStockByLocation } from './get-stock-by-location'; import { query } from './query'; import { remove } from './remove'; import { update } from './update'; type ApiDeclaration = { create: typeof create; getOne: typeof getOne; query: typeof query; update: typeof update; remove: typeof remove; getAllMovements: typeof getAllMovements; getStockByLocation: typeof getStockByLocation; }; export declare const productsApiDeclaration: ApiDeclaration; export {};