declare const command: {
    readonly configs: {
        readonly appsFolders: {
            readonly cli: {
                readonly name: "workspacesFolders";
                readonly type: ArrayConstructor;
                readonly default: readonly [];
            };
            readonly description: "Folders to use as monorepository workspace";
            readonly scope: "storage";
        };
        readonly entrypointGenerator: {
            readonly description: "Entrypoint generator to be used";
            readonly cli: {
                readonly type: StringConstructor;
                readonly hide: true;
            };
            readonly scope: "generator";
        };
        readonly workspaces: {
            readonly cli: {
                readonly type: BooleanConstructor;
            };
            readonly description: "Generate workspaces for multiples applications";
            readonly scope: "generator";
        };
        readonly generateApplications: {
            readonly cli: {
                readonly type: FunctionConstructor;
                readonly hide: true;
            };
            readonly scope: "generator";
        };
        readonly generateWith: {
            readonly cli: {
                readonly type: StringConstructor;
                readonly default: "app";
                readonly hide: true;
            };
            readonly scope: "generator";
        };
    };
    readonly import: readonly ["git"];
};
export default command;
