import { Command, flags } from '@oclif/command';
export default class DxDescribe extends Command {
    static description: string;
    static aliases: string[];
    static flags: {
        help: import("@oclif/parser/lib/flags").IBooleanFlag<void>;
        username: flags.IOptionFlag<string | undefined>;
        sobject: flags.IOptionFlag<string | undefined>;
        result: flags.IOptionFlag<string | undefined>;
        all: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
    };
    run(): Promise<void>;
}
