import Command, { flags } from '@oclif/command'; export default class QueryUpdate extends Command { static description: string; static examples: string[]; static flags: { max_age: import("@oclif/parser/lib/flags").IOptionFlag; help: import("@oclif/parser/lib/flags").IBooleanFlag; token: flags.IOptionFlag; hostname: flags.IOptionFlag; json: import("@oclif/parser/lib/flags").IBooleanFlag; }; static args: { name: string; required: boolean; description: string; }[]; run(): Promise>; }