import { SfCommand } from '@salesforce/sf-plugins-core';
import { SetOrUnsetConfigCommandResult } from './set.js';
export declare class UnSet extends SfCommand<SetOrUnsetConfigCommandResult> {
    static readonly description: string;
    static readonly summary: string;
    static readonly examples: string[];
    static readonly strict = false;
    static readonly aliases: string[];
    static readonly deprecateAliases = true;
    static configurationVariablesSection: import("@oclif/core").HelpSection;
    static readonly flags: {
        loglevel: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
        global: import("@oclif/core/interfaces").BooleanFlag<boolean>;
    };
    private responses;
    run(): Promise<SetOrUnsetConfigCommandResult>;
}
