import type { AxiosPromise } from "axios"; import type { CommentApi, FlowHiCommentList, FlowHiCommentReq, HiCommentKey, FlowHiCommentModel } from "./types"; declare class CommentApiImpl implements CommentApi { getKey(model: FlowHiCommentModel): HiCommentKey; findList(req: FlowHiCommentReq): AxiosPromise; } declare const commentApi: CommentApiImpl; export { commentApi };