interface ShutdownCallerContext { source: string; requestTs: string; remoteIp?: string; method?: string; path?: string; userAgent?: string; forwardedFor?: string; origin?: string; referer?: string; authPresent?: boolean; callerPid?: string; callerTs?: string; callerCwd?: string; callerCmd?: string; } export declare function setShutdownCallerContext(value: ShutdownCallerContext): void; export declare function clearShutdownCallerContext(): void; export declare function getShutdownCallerContext(opts?: { maxAgeMs?: number; }): ShutdownCallerContext | null; export type { ShutdownCallerContext };