declare const command: {
    readonly configs: {
        readonly defaults: {
            readonly cli: {
                readonly description: "Execute jhipster with default config";
                readonly type: BooleanConstructor;
            };
            readonly scope: "none";
        };
        readonly jhiPrefix: {
            readonly cli: {
                readonly description: "Add prefix before services, controllers and states name";
                readonly type: StringConstructor;
            };
            readonly scope: "storage";
        };
        readonly entitySuffix: {
            readonly cli: {
                readonly description: "Add suffix after entities name";
                readonly type: StringConstructor;
            };
            readonly scope: "storage";
        };
        readonly dtoSuffix: {
            readonly cli: {
                readonly description: "Add suffix after dtos name";
                readonly type: StringConstructor;
            };
            readonly scope: "storage";
        };
        readonly pkType: {
            readonly cli: {
                readonly description: "Default primary key type (beta)";
                readonly type: StringConstructor;
            };
            readonly scope: "storage";
        };
        readonly testFrameworks: {
            readonly description: "Test frameworks to be generated";
            readonly cli: {
                readonly type: ArrayConstructor;
            };
            readonly configure: (gen: any, value: any) => void;
            readonly scope: "none";
        };
    };
    readonly import: readonly ["base", "bootstrap", "jhipster:base-application:bootstrap", "jhipster:jdl:bootstrap", "common", "server", "client", "git", "cypress", "languages"];
};
export default command;
