import { AxiosInstance } from "axios"; import Base, { MaybeRaw, Options } from "../../../Base"; import { AgentVersions, Version } from "../../../interfaces/agent"; export declare class AgentBundle extends Base { private sourceServer; constructor(options: Options, axios: AxiosInstance); getVersions(raw?: { raw: R; }): Promise>; getLatestVersion(raw?: { raw: R; }): Promise>; getVersion(version: string, raw?: { raw: R; }): Promise>; protected getEndpoint(endpoint: string): string; }