import { AjaxInterceptorRequest, AjaxResponse, HookFunction } from './type'; export declare class CycleScheduler { req: AjaxInterceptorRequest; resp: AjaxResponse; constructor({ req, }?: { req?: AjaxInterceptorRequest; }); execute(request: AjaxInterceptorRequest, fnList: HookFunction[]): Promise; }