import { AxiosInstance } from "axios"; import Base, { MaybeRaw, Options } from "../../Base"; import { PanelVersions } from "../../interfaces/panel"; export default class PanelService extends Base { private sourceServer; constructor(options: Options, axios: AxiosInstance); getVersions(raw?: { raw: R; }): Promise>; protected getEndpoint(endpoint: string): string; }