import { AuthenticatedCommand } from "../../AuthenticatedCommand"; export default class Update extends AuthenticatedCommand { static readonly description = "modify the value or metadata of a Secret"; static readonly examples: string[]; static readonly args: { ref: import("@oclif/core/lib/interfaces").Arg>; }; run(): Promise; }