export declare class AgentVars {
  /** Static game ID associated with the agent. */
  static gameId: string;

  /** Static API key used for authentication in requests. */
  static apiKey: string;

  /** Static authorization token used for API requests. */
  static authorization: string;  

  /** Static backend url used to send network requests to the ARC server */
  static backend: string;
}