import AppBaseCommand from '../../base-app-command'; export default class UnSet extends AppBaseCommand { static description: string; static strict: boolean; static aliases: string[]; static flags: { help: import("@oclif/parser/lib/flags").IBooleanFlag; debug: import("@oclif/parser/lib/flags").IBooleanFlag; }; static args: { name: string; description: string; required: boolean; }[]; run(): Promise; }