main
1/**
2 * Install npm dependencies
3 * @param dependencies object of dependencies
4 * @param prefix  path to the directory where npm should install the dependencies
5 * @param registry custom npm registry URL when installing dependencies
6 * @param installerType package manager: npm, yarn, pnpm, bun, etc.
7 */
8export declare function installDeps(dependencies: Record<string, string>, prefix?: string, registry?: string, installerType?: string): Promise<void>;
9export declare function parseDeps(content: string): Record<string, string>;