import type { AxiosPromise } from "axios"; import type { ProcInstReq, FlowProcInstPage, FlowProcInstModel, FlowProcInstKey } from "../task/types"; import type { MonitorApi, FlowSuspendProcInstReq } from "./types"; declare class MonitorApiImpl implements MonitorApi { getKey(model: FlowProcInstModel): FlowProcInstKey; findPage(req: ProcInstReq): AxiosPromise; suspendProcInst(data: FlowSuspendProcInstReq): AxiosPromise; } declare const monitorApi: MonitorApiImpl; export { monitorApi };