declare const command: {
    readonly arguments: {
        readonly languages: {
            readonly description: "Languages to generate";
            readonly type: ArrayConstructor;
            readonly required: false;
        };
    };
    readonly configs: {
        readonly languages: {
            readonly cli: {
                readonly type: ArrayConstructor;
                readonly hide: true;
            };
            readonly scope: "storage";
        };
        readonly languagesDefinition: {
            readonly cli: {
                readonly type: ArrayConstructor;
                readonly hide: true;
            };
            readonly scope: "storage";
        };
        readonly enableTranslation: {
            readonly cli: {
                readonly description: "Enable translation";
                readonly type: BooleanConstructor;
            };
            readonly scope: "storage";
        };
        readonly language: {
            readonly cli: {
                readonly alias: "l";
                readonly description: "Language to be added to application (existing languages are not removed)";
                readonly type: ArrayConstructor;
            };
            readonly configure: (gen: any, value: any) => void;
            readonly scope: "none";
        };
        readonly nativeLanguage: {
            readonly cli: {
                readonly alias: "n";
                readonly description: "Set application native language";
                readonly type: StringConstructor;
                readonly required: false;
            };
            readonly configure: (gen: any, value: any) => void;
            readonly scope: "storage";
        };
        readonly regenerateLanguages: {
            readonly cli: {
                readonly description: "Regenerate languages";
                readonly type: BooleanConstructor;
            };
            readonly scope: "generator";
        };
    };
};
export default command;
