/** * matesLogEvent — the internal pub/sub event fired by log() / logError() / logWarning(). * * Deliberately does NOT use event() from events.ts to avoid a circular * dependency (events.ts → logger.ts → events.ts). * * The shape matches EventType so devtools and user code can subscribe * with the same __subscribe / trigger API as any other mates event. */ export interface MatesLogEventDetail { level: "log" | "error" | "warn"; message: unknown; data?: unknown; ts: number; } type Handler = (data: MatesLogEventDetail) => void; export declare const matesLogEvent: { name: string; __isEvent___: true; trigger(data: MatesLogEventDetail): void; __subscribe(fn: Handler): () => void; }; export {}; //# sourceMappingURL=logEvent.d.ts.map