/** * EventCaller is used to track the caller of an event. */ export declare class EventCaller { #private; readonly caller: unknown; readonly parent: EventCaller | null; readonly id: `${string}-${string}-${string}-${string}-${string}`; private constructor(); get computedCallers(): unknown[]; static create(caller: unknown, parent: EventCaller | null): EventCaller; } export declare function getEventCaller(): EventCaller | null; export declare function wrapEventCaller(originalMethod: (this: This, ...args: Args) => Result, context: ClassMethodDecoratorContext): (this: This, ...args: Args) => Result;