import { MittwaldAPIV2Client } from "@mittwald/api-client"; import { GetBaseCommand } from "../../lib/basecommands/GetBaseCommand.js"; type APIResponse = Awaited>; export default class Get extends GetBaseCommand { static description: string; static flags: { token: import("@oclif/core/interfaces").OptionFlag; }; static args: { "server-id": import("@oclif/core/interfaces").Arg; }; protected getData(): Promise; } export {};