import type { ArgumentsCamelCase, PositionalOptions } from "yargs"; import Command from "./command.type"; type Props = { name: string; path: string; "package-manager": "npm" | "pnpm"; }; export declare class CreateCommand extends Command { readonly command = "create [name] [path] [package-manager]"; readonly description = "create your backend app with BAD"; readonly argv: Record; execute(argv: ArgumentsCamelCase): Promise; private installDependencies; private fetchReleaseAssetUrl; } export default CreateCommand;