import type { ICmptAction, IListenerAction, RendererAction, RendererEvent, ScopedComponentType } from '../types'; export declare const getScopedComponents: (action: IListenerAction, renderer: ScopedComponentType, event: RendererEvent) => ScopedComponentType[]; /** * 组件动作 * * @export * @class CmptAction * @implements {Action} */ export declare class CmptAction implements RendererAction { run(action: ICmptAction, renderer: ScopedComponentType, event: RendererEvent): Promise; }