import { AuthenticatedCommand } from "../../AuthenticatedCommand"; export default class Update extends AuthenticatedCommand { static readonly description = "modify the configuration of an Application"; static readonly examples: string[]; static readonly args: { ref: import("@oclif/core/lib/interfaces").Arg>; }; static readonly flags: { "from-file": import("@oclif/core/lib/interfaces").OptionFlag; }; run(): Promise; }