import { ExecRenderBaseCommand } from "../../../lib/basecommands/ExecRenderBaseCommand.js"; import { ReactNode } from "react"; export default class Update extends ExecRenderBaseCommand { static summary: string; static args: { "installation-id": import("@oclif/core/interfaces").Arg; }; static examples: { description: string; command: string; }[]; static flags: { set: import("@oclif/core/interfaces").OptionFlag; "update-policy": import("@oclif/core/interfaces").OptionFlag; quiet: import("@oclif/core/interfaces").BooleanFlag; }; protected exec(): Promise; protected render(): ReactNode; }