import * as factory from '../factory'; import { ISearchResult, Service } from '../service'; export declare type IAction = factory.action.IAction>; /** * アクションサービス */ export declare class ActionService extends Service { /** * アクション検索 */ search(params: factory.action.ISearchConditions): Promise[]>>; findById(params: { id: string; typeOf: T; }): Promise>; }