import { Product, Response } from "../../types";
declare function fetchProducts(params: any): Promise<any | Response>;
declare function fetchProductsGroupedBy(params: any): Promise<any | Response>;
declare function fetchProductsGroupedByParent(params: any): Promise<Product[] | Response>;
declare function omsFetchGoodIdentificationTypes(parentTypeId?: string): Promise<any>;
export { fetchProducts, fetchProductsGroupedBy, fetchProductsGroupedByParent, omsFetchGoodIdentificationTypes };
