import { SfCommand } from '@salesforce/sf-plugins-core';
import { ConfigResponses } from '../../config.js';
export default class List extends SfCommand<ConfigResponses> {
    static readonly description: string;
    static readonly summary: string;
    static readonly examples: string[];
    static readonly aliases: string[];
    static readonly deprecateAliases = true;
    static readonly flags: {
        loglevel: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
    };
    run(): Promise<ConfigResponses>;
}
