export function isValid(info: any): boolean; export function mergeInfo(info: any): any; export type Info = { beacon?: string | undefined; /** * - Base URL endpoint for all data harvested by the agent. Proxies should be defined in the init instead. */ errorBeacon?: string | undefined; /** * - New Relic license key provided by the website in user account. */ licenseKey: string; /** * - New Relic application ID provided when creating a browser entity in the UI. */ applicationID: string; sa?: number | undefined; queueTime?: number | undefined; applicationTime?: number | undefined; ttGuid?: string | undefined; user?: string | undefined; account?: string | undefined; product?: string | undefined; extra?: string | undefined; /** * - Custom attributes that are added to majority of agent's payloads. The `setCustomAttribute` API method affects this. */ jsAttributes?: Object | undefined; userAttributes?: string | undefined; atts?: string | undefined; transactionName?: string | undefined; tNamePlain?: string | undefined; }; //# sourceMappingURL=info.d.ts.map