import { MittwaldAPIV2, MittwaldAPIV2Client } from "@mittwald/api-client"; import { GetBaseCommand } from "../../../lib/basecommands/GetBaseCommand.js"; export type PathParams = MittwaldAPIV2.Paths.V2MysqlDatabasesMysqlDatabaseId.Get.Parameters.Path; type APIResponse = Awaited>; export declare abstract class Get extends GetBaseCommand { static description: string; static flags: { token: import("@oclif/core/interfaces").OptionFlag; }; static args: { "database-id": import("@oclif/core/interfaces").Arg>; }; protected getData(): Promise; } export {};