import { Product, Response } from "../../types";
declare function fetchProducts(params: any): Promise<any | Response>;
declare function searchProducts(params: {
    keyword?: string;
    sort?: string;
    qf?: string;
    viewSize?: number;
    viewIndex?: number;
    filters?: any;
}): Promise<any>;
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, searchProducts };
