/**
 * Asks the user if they want to install dependencies and attempts to install them if confirmed.
 * @param cwd The current working directory
 * @returns true if dependencies are still missing (installation failed or user declined),
 *          false if dependencies are now installed
 */
export declare function askInstallDeps(cwd: string): Promise<boolean>;
