import { IAgentInstanceInfo, IInfoBuilder } from './agent-events-contracts'; import { AgentEventsController } from './agent-events-controller'; export declare class AgentInstanceInfoBuilder implements IInfoBuilder { static readonly DEFAULT_BROWSER_AGENT_VERSION = "1.0.0"; static readonly SEALIGHTS_WINDOW_OBJECT = "$Sealights"; static readonly SECRET_VALUE_PLACEHOLDER = "********"; private agentConfig; private info; private tags; private tools; private sendsPing; private logger; private technology; constructor(agentEventsController: AgentEventsController); fillData(): void; build(): IAgentInstanceInfo; private fillFromAgentConfig; private fillFromProcessObject; private extractSealightsEnvVars; }