/** * Standalone Notification Adapter — formatted stdout output. * * Used when running SEVO outside of OpenClaw (CI, local dev, testing). * Outputs human-readable, structured text to stdout without external deps. * * (FR-19, AC-19.9) */ import type { NotificationAdapter, PipelineNotification } from './notification-adapter.js'; export declare class StandaloneNotificationAdapter implements NotificationAdapter { notify(notification: PipelineNotification): Promise; } //# sourceMappingURL=standalone-notification.d.ts.map