declare const command: {
    readonly configs: {
        readonly defaultBaseName: {
            readonly internal: {
                readonly type: FunctionConstructor;
            };
            readonly scope: "generator";
        };
        readonly validateBaseName: {
            readonly internal: {
                readonly type: FunctionConstructor;
            };
            readonly scope: "generator";
        };
        readonly baseName: {
            readonly description: "Application base name";
            readonly cli: {
                readonly type: StringConstructor;
            };
            readonly prompt: (gen: any) => {
                type: "input";
                validate: (input: string) => any;
                message: string;
                default: () => any;
            };
            readonly scope: "storage";
        };
        readonly defaults: {
            readonly internal: {
                readonly type: BooleanConstructor;
            };
            readonly scope: "none";
        };
    };
};
export default command;
