import type { IDrawerAction, ListenerAction, RendererAction, RendererEvent, ScopedComponentType } from '../types'; /** * 打开抽屉动作 * * @export * @class DrawerAction * @implements {Action} */ export declare class DrawerAction implements RendererAction { run(action: IDrawerAction, renderer: ScopedComponentType, event: RendererEvent): Promise; } /** * 关闭抽屉动作 * * @export * @class CloseDrawerAction * @implements {Action} */ export declare class CloseDrawerAction implements RendererAction { run(action: ListenerAction, renderer: ScopedComponentType, event: RendererEvent): Promise; }