import type { ILinkAction, RendererAction, RendererEvent, ScopedComponentType } from '../types'; /** * 打开页面动作 * * @export * @class LinkAction * @implements {Action} */ export declare class LinkAction implements RendererAction { run(action: ILinkAction, renderer: ScopedComponentType, event: RendererEvent): Promise; }