import React from 'react'; export declare type ActionLogStatus = 'idle' | 'running' | 'success' | 'error'; export interface ActionLogEntry { status: ActionLogStatus; message: string; } export interface ActionLogProps { /** 历史日志,最新一条排在最后 */ entries: ActionLogEntry[]; /** 缺省 'Action Log' */ title?: string; } /** * Action 日志卡片:保留原 SalesSdkDemoContent 的 Last Action 风格, * 但改为支持多条历史(最新在底部)。step runner 的「单次执行 / 一键执行」可以把 * 关键节点的反馈塞进这个面板,避免页面上各处散落消息。 */ export declare const ActionLog: React.FC;