import type { ActionDispatchEvent } from "./action-store-access.js"; /** * 构造 ACTION_DISPATCH 的前端数据,只保留前端消费动作所需的业务字段。 * `origin` 是内部路由信息,`event` 与 `version` 不属于该事件的 wire 契约,均不透传。 */ export declare function toWireAction(action: ActionDispatchEvent): { eventId: string; action: string; topic?: string; target: string; status: ActionDispatchEvent["status"]; scopeControl?: ActionDispatchEvent["scopeControl"]; payload: ActionDispatchEvent["payload"]; timestamp: string; }; /** * 将权威 action 状态发给前端。必须保持同步返回:网络发送在内部 fire-and-forget。 */ export declare function sendActionRunEvent(action: ActionDispatchEvent): void; //# sourceMappingURL=action-run-event.d.ts.map