import type { IAjaxAction, RendererAction, RendererEvent, ScopedComponentType } from '../types'; /** * 发送请求动作 * * @export * @class AjaxAction * @implements {Action} */ export declare class AjaxAction implements RendererAction { fetcherType: string; constructor(fetcherType?: string); run(action: IAjaxAction, renderer: ScopedComponentType, event: RendererEvent): Promise<{ payload?: Record; responseData?: Record; ajaxMessage?: string; }>; }