import { AxiosInstance, AxiosResponse } from "axios"; import { WorkflowLog, WorkflowLogSearcher } from "../types"; export declare class WorkflowLogApi { request: AxiosInstance; url: string; constructor(request: AxiosInstance, strPath: string); list(searcher: WorkflowLogSearcher): Promise>>; count(searcher: WorkflowLogSearcher): Promise>; }