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