import { RenderBaseCommand } from "../../lib/basecommands/RenderBaseCommand.js"; import { ReactNode } from "react"; export default class Get extends RenderBaseCommand { static description: string; static args: { "backup-id": import("@oclif/core/interfaces").Arg; }; static flags: { [x: string]: import("@oclif/core/interfaces").Flag; }; static aliases: string[]; static deprecateAliases: boolean; protected render(): ReactNode; }