import type { IPageGoAction, RendererAction, RendererEvent, ScopedComponentType } from '../types'; /** * 返回上个页面 * * @export * @class PageGoBackAction * @implements {Action} */ export declare class PageGoBackAction implements RendererAction { run(action: IPageGoAction, renderer: ScopedComponentType, event: RendererEvent): Promise; } /** * 到指定页面 * * @export * @class PageGoAction * @implements {Action} */ export declare class PageGoAction implements RendererAction { run(action: IPageGoAction, renderer: ScopedComponentType, event: RendererEvent): Promise; } /** * 浏览器刷新 * * @export * @class PageRefreshAction * @implements {Action} */ export declare class PageRefreshAction implements RendererAction { run(action: IPageGoAction, renderer: ScopedComponentType, event: RendererEvent): Promise; }