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: { "project-id": import("@oclif/core/interfaces").Arg; }; static flags: { description: import("@oclif/core/interfaces").OptionFlag; "project-id": import("@oclif/core/interfaces").OptionFlag; quiet: import("@oclif/core/interfaces").BooleanFlag; }; protected exec(): Promise; protected render(): ReactNode; } export {};