import { Command } from '@oclif/core';
export default class ConfigGet extends Command {
    static description: string;
    static hidden: boolean;
    static args: {
        param: import("@oclif/core/lib/interfaces").Arg<string, Record<string, unknown>>;
    };
    run(): Promise<any>;
}
