import { Command, flags as flagTypes } from '@oclif/command';
declare class GenerateCommand extends Command {
    static aliases: string[];
    static description: string;
    static flags: {
        env: flagTypes.IOptionFlag<string>;
        config: flagTypes.IOptionFlag<string | undefined>;
        verbose: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
        version: import("@oclif/parser/lib/flags").IBooleanFlag<void>;
        help: import("@oclif/parser/lib/flags").IBooleanFlag<void>;
    };
    static args: {
        name: string;
    }[];
    getData(): Promise<any>;
    run(): Promise<void>;
}
export = GenerateCommand;
