import * as factory from '@chevre/factory'; import { ISearchResult, Service } from '../service'; /** * 口座取引サービス */ export declare class AccountTransactionService extends Service { /** * 取引検索 */ search(params: factory.account.transaction.ISearchConditions & { /** * 許可証発行元のプロダクト */ issuedThrough: { id: string; }; }): Promise[]>>; }