export interface PlatformEvent { id: string; eventType: string; description: string; source: string; timestamp: number; meta?: Record; } export declare const PlatformEventBus: { publish: (event: Omit) => void; subscribe: (callback: (event: PlatformEvent) => void) => () => void; getRecent: () => PlatformEvent[]; clear: () => void; }; //# sourceMappingURL=platform-event-bus.d.ts.map