import { ISearchProductsResult } from '../chevre/product'; import * as factory from '../factory'; import { Service } from '../service'; /** * プロダクトサービス */ export declare class ProductService extends Service { /** * 検索 */ search(params: factory.product.ISearchConditions): Promise<{ data: ISearchProductsResult[]; }>; /** * プロダクトオファー検索 */ searchOffers(params: { limit?: number; page?: number; itemOffered: { id: string; }; seller?: { id: string; }; }): Promise; }