import React from "react"; import { ExecRenderBaseCommand } from "../../lib/basecommands/ExecRenderBaseCommand.js"; export default class Uninstall extends ExecRenderBaseCommand { static description: string; static flags: { quiet: import("@oclif/core/interfaces").BooleanFlag; }; static args: { "extension-instance-id": import("@oclif/core/interfaces").Arg>; }; protected exec(): Promise; protected render(): React.ReactNode; }