import { ExecRenderBaseCommand } from "../../lib/basecommands/ExecRenderBaseCommand.js"; import { ReactNode } from "react"; type UpdateResult = void; export default class Update extends ExecRenderBaseCommand { static description: string; static args: { "registry-id": import("@oclif/core/interfaces").Arg>; }; static flags: { description: import("@oclif/core/interfaces").OptionFlag; uri: import("@oclif/core/interfaces").OptionFlag; username: import("@oclif/core/interfaces").OptionFlag; password: import("@oclif/core/interfaces").OptionFlag; quiet: import("@oclif/core/interfaces").BooleanFlag; }; protected exec(): Promise; protected render(): ReactNode; private getPassword; } export {};