import * as oclif from "@oclif/command"; export default class ConfigSet extends oclif.Command { static description: string; static examples: never[]; static flags: {}; static args: { name: string; description: string; }[]; run(): Promise; }