import type { AxiosPromise } from "axios"; import type { ProcInstReq, FlowProcInstPage, FlowProcInstModel, FlowProcInstKey } from "../task/types"; import type { DoneInstApi } from "./types"; declare class DoneInstApiImpl implements DoneInstApi { getKey(model: FlowProcInstModel): FlowProcInstKey; findPage(req: ProcInstReq): AxiosPromise; } declare const doneInstApi: DoneInstApiImpl; export { doneInstApi };