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