import * as factory from '../factory'; import { ISearchResult, Service } from '../service'; export declare type IOwnershipInfo = factory.ownershipInfo.IOwnershipInfo; /** * 所有権サービス */ export declare class OwnershipInfoService extends Service { /** * 所有権検索 */ search(params: factory.ownershipInfo.ISearchConditions & { countDocuments?: '1'; /** * 所有物詳細を取得する */ includeGoodWithDetails?: '1'; ownedFromGte?: Date; ownedFromLte?: Date; }): Promise>; }