export interface AgentIdentity { handle: string; name?: string; } export interface OwnerIdentity { handle: string; displayName?: string; } export declare function setEnvironmentContext(agent?: { handle: string; name?: string; }, owner?: { handle: string; displayName?: string; }): void; export declare function getAgentIdentity(): AgentIdentity | null; export declare function getOwnerIdentity(): OwnerIdentity | null; export declare function getOwnerHandle(): string | null; export declare function clearEnvironmentContext(): void; export declare function _resetForTesting(): void; //# sourceMappingURL=environment-context.d.ts.map