import type { IEmailAction, RendererAction, RendererEvent, ScopedComponentType } from '../types'; /** * 邮件动作 * * @export * @class EmailAction * @implements {Action} */ export declare class EmailAction implements RendererAction { run(action: IEmailAction, renderer: ScopedComponentType, event: RendererEvent): Promise; }