declare const command: {
    readonly configs: {
        readonly useVersionPlaceholders: {
            readonly description: "replace mutable versions with placeholders";
            readonly cli: {
                readonly type: BooleanConstructor;
                readonly env: "VERSION_PLACEHOLDERS";
                readonly hide: true;
            };
            readonly scope: "generator";
        };
        readonly skipChecks: {
            readonly description: "Check the status of the required tools";
            readonly cli: {
                readonly type: BooleanConstructor;
            };
            readonly scope: "generator";
        };
        readonly experimental: {
            readonly description: "Enable experimental features. Please note that these features may be unstable and may undergo breaking changes at any time";
            readonly cli: {
                readonly type: BooleanConstructor;
            };
            readonly scope: "generator";
        };
        readonly blueprints: {
            readonly description: "A comma separated list of one or more generator blueprints to use for the sub generators, e.g. --blueprints kotlin,vuejs";
            readonly cli: {
                readonly type: StringConstructor;
            };
            readonly scope: "none";
        };
        readonly disableBlueprints: {
            readonly description: "Disable blueprints support";
            readonly cli: {
                readonly type: BooleanConstructor;
            };
            readonly scope: "generator";
        };
        readonly debugEnabled: {
            readonly description: "Enable debugger";
            readonly cli: {
                readonly name: "debug";
                readonly type: BooleanConstructor;
                readonly alias: "d";
            };
            readonly scope: "generator";
        };
        readonly reproducible: {
            readonly description: "Try to reproduce changelog";
            readonly cli: {
                readonly type: BooleanConstructor;
            };
            readonly scope: "none";
        };
        readonly ignoreNeedlesError: {
            readonly description: "Ignore needles failures";
            readonly cli: {
                readonly type: BooleanConstructor;
                readonly hide: true;
            };
            readonly scope: "generator";
        };
        readonly nodePackageManager: {
            readonly description: "Force an unsupported client package manager";
            readonly cli: {
                readonly type: StringConstructor;
            };
            readonly scope: "storage";
        };
        readonly ignoreErrors: {
            readonly description: "Don't fail on prettier errors.";
            readonly cli: {
                readonly type: BooleanConstructor;
            };
            readonly scope: "none";
        };
        readonly creationTimestamp: {
            readonly description: "Project creation timestamp (used for reproducible builds)";
            readonly cli: {
                readonly type: (creationTimestampOption: string) => number | undefined;
            };
            readonly scope: "storage";
        };
        readonly blueprint: {
            readonly description: "DEPRECATED: Specify a generator blueprint to use for the sub generators";
            readonly internal: {
                readonly type: ArrayConstructor;
            };
            readonly scope: "none";
        };
        readonly jdlDefinition: {
            readonly internal: {
                readonly type: ObjectConstructor;
            };
            readonly scope: "none";
        };
    };
};
export default command;
