/**
 * Ensures a `package.json` file exists. If not, runs `npm init` with `--force` flag
 * @param {string} projectPath Project base path
 */
declare const ensureNpmInit: (projectPath: string) => Promise<void>;
export default ensureNpmInit;
