declare const command: {
    readonly configs: {
        readonly skipGit: {
            readonly description: "Skip git repository initialization";
            readonly cli: {
                readonly type: BooleanConstructor;
            };
            readonly scope: "generator";
        };
        readonly forceGit: {
            readonly description: "Force commit to git repository";
            readonly cli: {
                readonly type: BooleanConstructor;
            };
            readonly scope: "generator";
        };
        readonly commitMsg: {
            readonly description: "Commit changes (implies forceGit)";
            readonly cli: {
                readonly type: StringConstructor;
                readonly implies: {
                    readonly forceGit: true;
                };
            };
            readonly scope: "generator";
        };
        readonly monorepository: {
            readonly description: "Use monorepository";
            readonly cli: {
                readonly type: BooleanConstructor;
            };
            readonly scope: "storage";
        };
    };
};
export default command;
