import { PackageManager } from "./types/options.js"; type langType = { ts?: "TypeScript"; js?: "JavaScript"; }; type packageManagerType = { npm?: string; pnpm?: string; yarn?: string; bun?: string; }; export declare const selectPackageManger: (options: packageManagerType) => Promise; export declare const selectLanguage: (options: langType) => Promise<"TypeScript" | "JavaScript">; type dbTypes = { mongoose?: string; prisma?: string; drizzle?: string; none?: string; }; export declare const selectDatabase: (options: dbTypes) => Promise; export declare const copyTemplate: (language: string, name: string, targetDir: string, s: any) => Promise; export declare const installdependencies: (s: any, pkgPath: string, targetDir: string, packageManger: PackageManager) => Promise; export {}; //# sourceMappingURL=prompt.d.ts.map