import { ActorCallType } from "./ActorCallType"; export default class ActorMethodContext { private readonly methodName; private readonly callType; private constructor(); getMethodName(): string; getCallType(): ActorCallType; static createForActor(methodName: string): ActorMethodContext; static createForTimer(methodName: string): ActorMethodContext; static createForReminder(methodName: string): ActorMethodContext; }