import { AgentTypes, AgentTechnologies } from './agent-events/agent-events-contracts'; export declare class AgentInstanceData { readonly agentType: AgentTypes; readonly technology: AgentTechnologies; readonly buildSessionId?: string; readonly agentVersion: string; private agentAllocatedMemoryInMb; constructor(agentType: AgentTypes, technology: AgentTechnologies, buildSessionId?: string); readonly agentId: string; private resolveAgentVersion; private resolveAgentVersionForBrowserAgent; set AgentAllocatedMemoryInMb(memory: number); get AgentAllocatedMemoryInMb(): number; }